Bump to v4.17.2.

This commit is contained in:
John-David Dalton
2016-11-15 22:25:47 -08:00
parent 5585b3ae22
commit db9697dfef
14 changed files with 176 additions and 176 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])];