astro-ghostcms/.pnpm-store/v3/files/37/1a065dd7057a23a84d912e771a3...

10 lines
253 B
Plaintext

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