_.kebabCase

_.kebabCase([string=''])

Converts string to kebab case.

Since

3.0.0

Arguments

  1. [string=''] (string): The string to convert.

Returns

(string): Returns the kebab cased string.

Example

_.kebabCase('Foo Bar');
// => 'foo-bar'
 
_.kebabCase('fooBar');
// => 'foo-bar'
 
_.kebabCase('__FOO_BAR__');
// => 'foo-bar'
doc_Lodash
2016-11-27 16:38:40
Comments
Leave a Comment

Please login to continue.