Files
feedstr.live/node_modules/core-js-pure/internals/async-iterator-wrap.js
T
2023-11-25 18:12:47 -05:00

8 lines
256 B
JavaScript

'use strict';
var call = require('../internals/function-call');
var createAsyncIteratorProxy = require('../internals/async-iterator-create-proxy');
module.exports = createAsyncIteratorProxy(function () {
return call(this.next, this.iterator);
}, true);