mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-07 18:07:49 +00:00
Apply even more let/const transforms.
This commit is contained in:
@@ -20,6 +20,6 @@ import createCompounder from './_createCompounder.js';
|
||||
* _.lowerCase('__FOO_BAR__');
|
||||
* // => 'foo bar'
|
||||
*/
|
||||
var lowerCase = createCompounder((result, word, index) => result + (index ? ' ' : '') + word.toLowerCase());
|
||||
const lowerCase = createCompounder((result, word, index) => result + (index ? ' ' : '') + word.toLowerCase());
|
||||
|
||||
export default lowerCase;
|
||||
|
||||
Reference in New Issue
Block a user