Convert KebabCase to CamelCase.
Usage:
import { convertKebabToCamel } from "mazey";const ret1 = convertKebabToCamel("a-b-c");const ret2 = convertKebabToCamel("a-bb-cc");console.log(ret1, ret2); Copy
import { convertKebabToCamel } from "mazey";const ret1 = convertKebabToCamel("a-b-c");const ret2 = convertKebabToCamel("a-bb-cc");console.log(ret1, ret2);
Output:
aBC aBbCc Copy
aBC aBbCc
"a-bb-cc"
"aBbCc"
Convert KebabCase to CamelCase.
Usage:
Output: