Convert string to camelcase
npm install convert-to-camelcase
$ npm install --save convert-to-camelcase
`Usage
`javascript
var convertToCamelcase = require("convert-to-camelcase").defaultconvertToCamelcase("the-really-cool-app");
//=> theReallyCoolApp
`Test
`
$ npm test
`API
$3
> What does this method do?| Name | Type | Description |
|------|------|-------------|
| str |
String | String to convert |Returns:
String, camelcased string `javascript
var convertToCamelcase = require("convert-to-camelcase").defaultconvertToCamelcase("the-really-cool-app");
//=> theReallyCoolApp
``