Bump to v4.17.5.

This commit is contained in:
John-David Dalton
2018-02-02 21:11:07 -08:00
parent 528e134995
commit edff3e8d25
16 changed files with 130 additions and 34 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')) {