| Index: src/typedarray.js
|
| diff --git a/src/typedarray.js b/src/typedarray.js
|
| index 416fd689a2f13edd4691a46fbf61c7f5d184e516..81fc13ea567b3752b47dd7a0fb4916b60690809c 100644
|
| --- a/src/typedarray.js
|
| +++ b/src/typedarray.js
|
| @@ -143,7 +143,7 @@ function NAMEConstructByIterable(obj, iterable, iteratorFn) {
|
| // was already looked up, and wrap it in another iterable. The
|
| // __proto__ of the new iterable is set to null to avoid any chance
|
| // of modifications to Object.prototype being observable here.
|
| - var iterator = %_CallFunction(iterable, iteratorFn);
|
| + var iterator = %_Call(iteratorFn, iterable);
|
| var newIterable = {
|
| __proto__: null
|
| };
|
|
|