node-camel-case

0.0.1 • Public • Published

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.

/node-camel-case/

    Package Sidebar

    Install

    npm i node-camel-case

    Weekly Downloads

    0

    Version

    0.0.1

    License

    MIT

    Last publish

    Collaborators

    • ahadb