Files
est-frame/node_modules/core-js-pure/internals/async-iterator-wrap.js
2025-10-22 05:38:27 +00:00

8 lines
256 B
JavaScript
Executable File

'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);