astro-ghostcms/.pnpm-store/v3/files/c6/fd64b88a0d40db67e5dc692b458...

10 lines
247 B
Plaintext

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