0.0.1 • Published 8 years ago

node-camel-case v0.0.1

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

node-camel-case

A node module to kebab case a string — /ie: camelCase

##Overview

Use this module when you need to convert a string to camel case

##Installing

npm i node-camel-case --save-dev

##Usage

Simply require the node-camel-case module. The export function can be used in any module you desire:

const camelCase = require('node-camel-case');

camelCase('String to camel case');
camelCase('String to camel Case');
camelCase('string to Camel Case');
camelCase('string to CamelCase');
camelCase('string-to CamelCase');

//==> all ouptput stringToCamelCase

##TODO


##Tests

npm test

Also supports the standards JavaScript library, configure as follows:

"standard": {
    "ignore": [
      "/test/test.js",
      "app.js"
    ]
  }
// wip

##Related Modules

##Contributing

Feel free to file an issue or bug.