| Index: src/js/typedarray.js
|
| diff --git a/src/js/typedarray.js b/src/js/typedarray.js
|
| index edb3b06a745875b27f9173dad68209a291c369f8..b889d8bafc252c6eac6decfa9fb15831e63ce24b 100644
|
| --- a/src/js/typedarray.js
|
| +++ b/src/js/typedarray.js
|
| @@ -260,7 +260,7 @@
|
| NAMEConstructByTypedArray(this, arg1);
|
| } else if (IS_RECEIVER(arg1)) {
|
| var iteratorFn = arg1[iteratorSymbol];
|
| - if (IS_UNDEFINED(iteratorFn) || iteratorFn === ArrayValues) {
|
| + if (IS_UNDEFINED(iteratorFn)) {
|
| NAMEConstructByArrayLike(this, arg1, arg1.length);
|
| } else {
|
| NAMEConstructByIterable(this, arg1, iteratorFn);
|
|
|