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

10 lines
247 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.drop === 'function'
? Iterator.prototype.drop
: implementation;
};