just-camelize
v1.0.0
Published
transform strings to camel case.
Downloads
2
Maintainers
Readme
just-camelize
transform strings to camel case.
import camelize from 'just-camelize';
camelize('_hello_world'); // HelloWorld
camelize('_hello-world'); // HelloWorld
camelize('-hello_world'); // HelloWorld
camelize('-hello-world'); // HelloWorld