Lobashov_Ivan_PIBD-21_IP/Lab2/node_modules/.object.groupby-IIT0t0u7/shim.js

18 lines
305 B
JavaScript
Raw Normal View History

2024-01-10 22:39:31 +04:00
'use strict';
var define = require('define-properties');
var getPolyfill = require('./polyfill');
module.exports = function shim() {
var polyfill = getPolyfill();
define(
Object,
{ groupBy: polyfill },
{ groupBy: function () { return Object.groupBy !== polyfill; } }
);
return polyfill;
};