astro-ghostcms/.pnpm-store/v3/files/c5/86bd68d7994db84f59dd7c45fd1...

10 lines
253 B
Plaintext

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