小宝贝 2332bb7261 node hace 1 año
..
test 2332bb7261 node hace 1 año
.npmignore 2332bb7261 node hace 1 año
LICENSE 2332bb7261 node hace 1 año
README.md 2332bb7261 node hace 1 año
camel2hyphen.js 2332bb7261 node hace 1 año
hyphen2camel.js 2332bb7261 node hace 1 año
index.js 2332bb7261 node hace 1 año
package.json 2332bb7261 node hace 1 año

README.md

string-convert

Set of string conversion functions

Installation

npm install string-convert --save

Methods

hyphen2camel

Converts hyphenated string to camelcase string

Example:

var hyphen2camel = require('string-convert/hyphen2camel');
hyphen2camel('min-width'); // minWidth
hyphen2camel('-moz-transition'); // MozTransition

camel2hyphen

Converts camel case string to hyphenated string

Example:

var camel2hyphen = require('string-convert/camel2hyphen');
camel2hyphen('minWidth');  // min-width
camel2hyphen('MozTransition'); //-moz-transition