mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-04 08:57:49 +00:00
Apply even more let/const transforms.
This commit is contained in:
@@ -31,7 +31,7 @@ import baseIteratee from './_baseIteratee.js';
|
||||
* // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed)
|
||||
*/
|
||||
function mapValues(object, iteratee) {
|
||||
var result = {};
|
||||
const result = {};
|
||||
iteratee = baseIteratee(iteratee, 3);
|
||||
|
||||
baseForOwn(object, (value, key, object) => {
|
||||
|
||||
Reference in New Issue
Block a user