0.0.1 • Published 8 years ago

convert-to-camelcase v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

convert-to-camelcase Build Status

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?

NameTypeDescription
strStringString to convert

Returns: String, camelcased string

var convertToCamelcase = require("convert-to-camelcase").default

convertToCamelcase("the-really-cool-app");
//=> theReallyCoolApp

License

MIT © Joe Gesualdo