From da2e8a103086924cd100368db2c87f1680e3a200 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 15 Nov 2016 20:18:53 -0800 Subject: [PATCH] Minor var order nit. --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index a9444b76b..8196609ef 100644 --- a/lodash.js +++ b/lodash.js @@ -13590,8 +13590,8 @@ // Ensure the loop is entered when path is empty. if (!length) { - object = undefined; length = 1; + object = undefined; } while (++index < length) { var value = object == null ? undefined : object[toKey(path[index])];