camelcase
Convert a string to camel case.
Usage
var camelcase = require( '@stdlib/string/base/camelcase' );
camelcase( str )
Converts a string to camel case.
var out = camelcase( 'foo bar' );
// returns 'fooBar'
out = camelcase( 'IS_MOBILE' );
// returns 'isMobile'
out = camelcase( 'Hello World!' );
// returns 'helloWorld'
out = camelcase( '--foo-bar--' );
// returns 'fooBar'
Examples
var camelcase = require( '@stdlib/string/base/camelcase' );
var str = 'Hello World!';
var out = camelcase( str );
// returns 'helloWorld'
str = 'HELLO WORLD!';
out = camelcase( str );
// returns 'helloWorld'
str = 'To be, or not to be: that is the question.';
out = camelcase( str );
// returns 'toBeOrNotToBeThatIsTheQuestion'