Bump to v4.16.3.

This commit is contained in:
John-David Dalton
2016-10-02 22:00:47 -07:00
parent ac571efbbd
commit eb1446def5
16 changed files with 213 additions and 176 deletions

View File

@@ -13,7 +13,7 @@
var undefined;
/** Used as the semantic version number. */
var VERSION = '4.16.2';
var VERSION = '4.16.3';
/** Error message constants. */
var FUNC_ERROR_TEXT = 'Expected a function';
@@ -40,6 +40,7 @@
genTag = '[object GeneratorFunction]',
numberTag = '[object Number]',
objectTag = '[object Object]',
proxyTag = '[object Proxy]',
regexpTag = '[object RegExp]',
stringTag = '[object String]';
@@ -369,7 +370,7 @@
if (objectCreate) {
return objectCreate(proto);
}
object.prototype = prototype;
object.prototype = proto;
var result = new object;
object.prototype = undefined;
return result;
@@ -2688,7 +2689,7 @@
// The use of `Object#toString` avoids issues with the `typeof` operator
// in Safari 8-9 which returns 'object' for typed array and other constructors.
var tag = isObject(value) ? objectToString.call(value) : '';
return tag == funcTag || tag == genTag;
return tag == funcTag || tag == genTag || tag == proxyTag;
}
/**