convert-to-camelcase
v0.0.1
Published
Convert string to camelcase
Maintainers
Readme
convert-to-camelcase 
Convert string to camelcase
Install
$ npm install --save convert-to-camelcaseUsage
var convertToCamelcase = require("convert-to-camelcase").default
convertToCamelcase("the-really-cool-app");
//=> theReallyCoolAppTest
$ npm testAPI
convertToCamelcase(str)
What does this method do?
| Name | Type | Description |
|------|------|-------------|
| str | String | String to convert |
Returns: String, camelcased string
var convertToCamelcase = require("convert-to-camelcase").default
convertToCamelcase("the-really-cool-app");
//=> theReallyCoolAppLicense
MIT © Joe Gesualdo
