Frontend/25_01_07/mai/node_modules/object.groupby/shim.js
szabomarton 7f4a15b9c3 asd
2025-01-28 11:38:27 +01: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;
};