astro-ghostcms/.pnpm-store/v3/files/46/1d4b8b2c407799c58b0a0531265...

10 lines
247 B
Plaintext

'use strict';
var implementation = require('./implementation');
module.exports = function getPolyfill() {
return typeof Iterator === 'function' && typeof Iterator.prototype.some === 'function'
? Iterator.prototype.some
: implementation;
};