astro-ghostcms/.pnpm-store/v3/files/df/85929df3701020a3dc7fa687aa7...

16 lines
347 B
Plaintext

'use strict';
var hasSymbols = require('has-symbols');
/* globals AsyncIterator: false */
var asyncIterProto = typeof AsyncIterator === 'function' ? AsyncIterator.prototype : {};
if (hasSymbols() && !(Symbol.iterator in asyncIterProto)) {
asyncIterProto[Symbol.iterator] = function () {
return this;
};
}
module.exports = asyncIterProto;