Function
Transform a string to camelCase format
The string to transform
The string in camelCase format
camelify("hello world"); // "helloWorld"camelify("C'est un test"); // "cestUnTest"camelify("foo bar baz"); // "fooBarBaz" Copy
camelify("hello world"); // "helloWorld"camelify("C'est un test"); // "cestUnTest"camelify("foo bar baz"); // "fooBarBaz"
Transform a string to camelCase format