|
пре 1 година | |
---|---|---|
.. | ||
test | пре 1 година | |
.npmignore | пре 1 година | |
LICENSE | пре 1 година | |
README.md | пре 1 година | |
camel2hyphen.js | пре 1 година | |
hyphen2camel.js | пре 1 година | |
index.js | пре 1 година | |
package.json | пре 1 година |
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