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

10 lines
251 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
'use strict';
var implementation = require('./implementation');
module.exports = function getPolyfill() {
return typeof Iterator === 'function' && typeof Iterator.prototype.reduce === 'function'
? Iterator.prototype.reduce
: implementation;
};