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

16 lines
347 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
'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;