📄 polyfill.js
/home/palash/git/site/node_modules/es-iterator-helpers/Iterator/polyfill.js
Language: js • Lines: 8
'use strict';

var globalThis = require('globalthis')();
var implementation = require('./implementation');

module.exports = function getPolyfill() {
	return typeof globalThis.Iterator === 'function' ? globalThis.Iterator : implementation;
};