Bump to v4.17.2.

This commit is contained in:
John-David Dalton
2016-11-15 22:22:55 -08:00
parent 95f47b6d19
commit 035ce4f44c
9 changed files with 16 additions and 35 deletions

View File

@@ -39,8 +39,8 @@ function result(object, path, defaultValue) {
// 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])];