gtb.tocamelcase
v1.0.0
Published
Transform string to camelCase
Downloads
174
Maintainers
Readme
toCamelCase
Fast transform of a string to camelCase. Removes spaces, dashes and underscores.
import toCamelCase from './gtb.tocamelcase'
toCamelCase('Some string') // someString
toCamelCase('some-string') // someString
toCamelCase('SOME_STRING') // someString
toCamelCase('some--WEIRD__string') // someWeirdString