UNPKG

shopify-accelerate

Version:

Shopify Theme development with full Typescript Support

7 lines (6 loc) 208 B
export const toCamelCase = (str) => str .replace(/(?:^\w|[A-Z]|\b\w)/g, (word, index) => { return index === 0 ? word.toLowerCase() : word.toUpperCase(); }) .replace(/[\s-]+/gi, "");