mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-08 10:17:48 +00:00
Apply arrow function transform.
This commit is contained in:
@@ -21,8 +21,6 @@ import createCompounder from './_createCompounder.js';
|
||||
* _.kebabCase('__FOO_BAR__');
|
||||
* // => 'foo-bar'
|
||||
*/
|
||||
var kebabCase = createCompounder(function(result, word, index) {
|
||||
return result + (index ? '-' : '') + word.toLowerCase();
|
||||
});
|
||||
var kebabCase = createCompounder((result, word, index) => result + (index ? '-' : '') + word.toLowerCase());
|
||||
|
||||
export default kebabCase;
|
||||
|
||||
Reference in New Issue
Block a user