astro-ghostcms/.pnpm-store/v3/files/d4/c496c7e80b7825b557cdc7b075a...

10 lines
247 B
Plaintext

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