mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-06 01:47:48 +00:00
Minor var order nit.
This commit is contained in:
@@ -13590,8 +13590,8 @@
|
|||||||
|
|
||||||
// Ensure the loop is entered when path is empty.
|
// Ensure the loop is entered when path is empty.
|
||||||
if (!length) {
|
if (!length) {
|
||||||
object = undefined;
|
|
||||||
length = 1;
|
length = 1;
|
||||||
|
object = undefined;
|
||||||
}
|
}
|
||||||
while (++index < length) {
|
while (++index < length) {
|
||||||
var value = object == null ? undefined : object[toKey(path[index])];
|
var value = object == null ? undefined : object[toKey(path[index])];
|
||||||
|
|||||||
Reference in New Issue
Block a user