8 lines
231 B
TypeScript
8 lines
231 B
TypeScript
|
import { capitalize } from "tsafe/capitalize";
|
||
|
|
||
|
export function kebabCaseToCamelCase(kebabCaseString: string): string {
|
||
|
const [first, ...rest] = kebabCaseString.split("-");
|
||
|
|
||
|
return [first, rest.map(capitalize)].join("");
|
||
|
}
|