astro-ghostcms/.pnpm-store/v3/files/87/36a27d89b9023c045e6b87a05ad...

10 lines
251 B
Plaintext

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