Files
2026-DEV-BUT3/node_modules/es-iterator-helpers/Iterator.concat/index.js
T

19 lines
379 B
JavaScript
Raw Normal View History

2026-04-25 15:28:39 +02:00
'use strict';
var callBind = require('call-bind');
var define = require('define-properties');
var implementation = require('./implementation');
var getPolyfill = require('./polyfill');
var shim = require('./shim');
var bound = callBind(getPolyfill(), null);
define(bound, {
getPolyfill: getPolyfill,
implementation: implementation,
shim: shim
});
module.exports = bound;