|
|
hace 2 meses | |
|---|---|---|
| .. | ||
| test | hace 2 meses | |
| .npmignore | hace 2 meses | |
| LICENSE | hace 2 meses | |
| README.md | hace 2 meses | |
| camel2hyphen.js | hace 2 meses | |
| hyphen2camel.js | hace 2 meses | |
| index.js | hace 2 meses | |
| package.json | hace 2 meses | |
Set of string conversion functions
npm install string-convert --save
Converts hyphenated string to camelcase string
Example:
var hyphen2camel = require('string-convert/hyphen2camel');
hyphen2camel('min-width'); // minWidth
hyphen2camel('-moz-transition'); // MozTransition
Converts camel case string to hyphenated string
Example:
var camel2hyphen = require('string-convert/camel2hyphen');
camel2hyphen('minWidth'); // min-width
camel2hyphen('MozTransition'); //-moz-transition