mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-08 18:17:48 +00:00
Apply arrow function transform.
This commit is contained in:
@@ -139,7 +139,7 @@ function baseClone(value, bitmask, customizer, key, object, stack) {
|
||||
: (isFlat ? keysIn : keys);
|
||||
|
||||
var props = isArr ? undefined : keysFunc(value);
|
||||
arrayEach(props || value, function(subValue, key) {
|
||||
arrayEach(props || value, (subValue, key) => {
|
||||
if (props) {
|
||||
key = subValue;
|
||||
subValue = value[key];
|
||||
|
||||
Reference in New Issue
Block a user