massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / modules / esnext.iterator.drop.js
index 62cc89d0f8d56f612a77a604b586ec504b7aca76..897c272c34b2a2b2c48c09cb78a67f0332566f4e 100644 (file)
@@ -1,21 +1,23 @@
 'use strict';
 // https://github.com/tc39/proposal-iterator-helpers
 var $ = require('../internals/export');
+var apply = require('../internals/function-apply');
+var call = require('../internals/function-call');
 var anObject = require('../internals/an-object');
 var toPositiveInteger = require('../internals/to-positive-integer');
 var createIteratorProxy = require('../internals/iterator-create-proxy');
 
-var IteratorProxy = createIteratorProxy(function (arg) {
+var IteratorProxy = createIteratorProxy(function (args) {
   var iterator = this.iterator;
   var next = this.next;
   var result, done;
   while (this.remaining) {
     this.remaining--;
-    result = anObject(next.call(iterator));
+    result = anObject(call(next, iterator));
     done = this.done = !!result.done;
     if (done) return;
   }
-  result = anObject(next.call(iterator, arg));
+  result = anObject(apply(next, iterator, args));
   done = this.done = !!result.done;
   if (!done) return result.value;
 });