Afanasev_Stepan_PIbd-21_IP/ИП 3 лаба/node_modules/object.groupby/shim.js
[USERNAME] 0dd26716dc Lab2-5
2024-01-10 16:11:49 +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;
};