Bump to v4.17.5.

This commit is contained in:
John-David Dalton
2018-02-02 21:38:59 -08:00
parent 860d1f9484
commit 0e314104d6
25 changed files with 461 additions and 401 deletions

View File

@@ -13,7 +13,7 @@ var hasOwnProperty = objectProto.hasOwnProperty;
*/
function initCloneArray(array) {
var length = array.length,
result = array.constructor(length);
result = new array.constructor(length);
// Add properties assigned by `RegExp#exec`.
if (length && typeof array[0] == 'string' && hasOwnProperty.call(array, 'index')) {