PIbd-21_Danilov_V.V._Intern.../Lab3/node_modules/object.groupby/shim.js
Владимир Данилов 83490711d5 отчет
2023-12-19 20:23:11 +04:00

18 lines
305 B
JavaScript

'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;
};