Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
Dailin 415ba84223 pre0115 3 anni fa
..
.editorconfig pre0115 3 anni fa
.npmignore pre0115 3 anni fa
.travis.yml pre0115 3 anni fa
README.md pre0115 3 anni fa
index.js pre0115 3 anni fa
package.json pre0115 3 anni fa
test.js pre0115 3 anni fa

README.md

kebab-case

Build status NPM version XO code style

Convert a string to kebab-case, i.e. its dash separated form

The difference between kebab-case and e.g. dashify is that this module doesn't modify the string in any other way than transforming uppercased letters to their lowercased counterparts prefixed with -. Thanks to this there's also a reverse function to do the opposite, i.e. get back the original value.

This is used in Unistyle to transform JavaScript CSS properties to their CSS counterparts without losing a possible browser prefix, e.g: WebkitTransform -> -webkit-transform.

Installation

Install kebab-case using npm:

npm install --save kebab-case

Usage

Module usage

var kebabCase = require('kebab-case');

kebabCase('WebkitTransform');
// "-webkit-transform"
kebabCase.reverse('-webkit-transform');
// "WebkitTransform"

API

kebabCase(str)

Name Type Description
str String The string to convert

Returns: String, the kebab cased string.

kebabCase.reverse(str)

Name Type Description
str String The string to convert back

Returns: String, the "unkebab cased" string.

License

MIT © Joakim Carlstein