Skip to content

ahadb/node-camel-case

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-camel-case

A node module to camel case any string — /ie: camelCase

##Overview

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

##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.

About

A node module to kebab case a string: `kebab-case`

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors