astro-ghostcms/.pnpm-store/v3/files/ec/279bc0e8659b1ace623d96ca6a9...

10 lines
251 B
Plaintext

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