convert-to-camelcase
v0.0.1
Published
Convert string to camelcase
Downloads
4
Maintainers
Readme
convert-to-camelcase
Convert string to camelcase
Install
$ npm install --save convert-to-camelcase
Usage
var convertToCamelcase = require("convert-to-camelcase").default
convertToCamelcase("the-really-cool-app");
//=> theReallyCoolApp
Test
$ npm test
API
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");
//=> theReallyCoolApp
License
MIT © Joe Gesualdo