root / HServer / 00.Server / 00.Program / node_modules / lodash / kebabCase.js
이력 | 보기 | 이력해설 | 다운로드 (659 Bytes)
| 1 | 39 | HKM | var createCompounder = require('./_createCompounder'); |
|---|---|---|---|
| 2 | |||
| 3 | /**
|
||
| 4 | * Converts `string` to
|
||
| 5 | * [kebab case](https://en.wikipedia.org/wiki/Letter_case#Special_case_styles).
|
||
| 6 | *
|
||
| 7 | * @static
|
||
| 8 | * @memberOf _
|
||
| 9 | * @since 3.0.0
|
||
| 10 | * @category String
|
||
| 11 | * @param {string} [string=''] The string to convert.
|
||
| 12 | * @returns {string} Returns the kebab cased string.
|
||
| 13 | * @example
|
||
| 14 | *
|
||
| 15 | * _.kebabCase('Foo Bar');
|
||
| 16 | * // => 'foo-bar'
|
||
| 17 | *
|
||
| 18 | * _.kebabCase('fooBar');
|
||
| 19 | * // => 'foo-bar'
|
||
| 20 | *
|
||
| 21 | * _.kebabCase('__FOO_BAR__');
|
||
| 22 | * // => 'foo-bar'
|
||
| 23 | */
|
||
| 24 | var kebabCase = createCompounder(function(result, word, index) { |
||
| 25 | return result + (index ? '-' : '') + word.toLowerCase(); |
||
| 26 | }); |
||
| 27 | |||
| 28 | module.exports = kebabCase; |