@robotical/martyblocks
Version:
MartyBlocks based on Scratch for Marty the Robot by Robotical
19 lines (13 loc) • 355 B
JavaScript
;
var define = require('define-properties');
var globalThis = require('globalthis')();
var getPolyfill = require('./polyfill');
module.exports = function shimIterator() {
var polyfill = getPolyfill();
define(
globalThis,
{ Iterator: polyfill },
{ Iterator: function () { return Iterator !== polyfill; } }
);
return polyfill;
};