astro-ghostcms/.pnpm-store/v3/files/ee/257339628cb1d763f67322c3d1a...

18 lines
305 B
Plaintext

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