PromoCursed/node_modules/string-convert
2024-08-20 23:25:37 +04:00
..
test Первый коммит 2024-08-20 23:25:37 +04:00
.npmignore Первый коммит 2024-08-20 23:25:37 +04:00
camel2hyphen.js Первый коммит 2024-08-20 23:25:37 +04:00
hyphen2camel.js Первый коммит 2024-08-20 23:25:37 +04:00
index.js Первый коммит 2024-08-20 23:25:37 +04:00
LICENSE Первый коммит 2024-08-20 23:25:37 +04:00
package.json Первый коммит 2024-08-20 23:25:37 +04:00
README.md Первый коммит 2024-08-20 23:25:37 +04:00

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