Skip to content

Commit ad25a4b

Browse files
committed
Merge pull request #177 from dduponchel/ie8_isArray
IE8: use isArray.
2 parents d322009 + 22d0ef3 commit ad25a4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/es6-promise/enumerator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function Enumerator(Constructor, input) {
3030
makePromise(this.promise);
3131
}
3232

33-
if (Array.isArray(input)) {
33+
if (isArray(input)) {
3434
this._input = input;
3535
this.length = input.length;
3636
this._remaining = input.length;

0 commit comments

Comments
 (0)