@stdlib/string-base-camelcase
v0.2.2
Published
Convert a string to camel case.
Downloads
359
Readme
camelcase
Convert a string to camel case.
Installation
npm install @stdlib/string-base-camelcase
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'
See Also
@stdlib/string-base/constantcase
: convert a string to constant case.@stdlib/string-base/lowercase
: convert a string to lowercase.@stdlib/string-base/snakecase
: convert a string to snake case.@stdlib/string-base/uppercase
: convert a string to uppercase.
Notice
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
Community
License
See LICENSE.
Copyright
Copyright © 2016-2024. The Stdlib Authors.