From e2096c0ef1ad674825df919d6a8e4568ce3160fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Lipi=C5=84ski?= Date: Wed, 1 Mar 2017 14:39:47 +0100 Subject: [PATCH] Fixin `keysIn` import in `defaults` by switching to `baseKeysIn`. --- defaults.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/defaults.js b/defaults.js index 01e44e3ee..eb552bd68 100644 --- a/defaults.js +++ b/defaults.js @@ -1,5 +1,5 @@ import eq from './eq.js' -import keysIn from './keysIn.js' +import baseKeysIn from './.internal/baseKeysIn.js' /** Used for built-in method references. */ const objectProto = Object.prototype @@ -32,7 +32,7 @@ function defaults(object, ...sources) { const srcLength = sources.length while (++srcIndex < srcLength) { const source = sources[srcIndex] - const props = keysIn(source) + const props = baseKeysIn(source) let propsIndex = -1 const propsLength = props.length while (++propsIndex < propsLength) {