astro-ghostcms/.pnpm-store/v3/files/5d/0140cac53e7a5abab51d3ef4ad4...

10 lines
253 B
Plaintext

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