mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 03:38:24 -04:00
18 lines
305 B
JavaScript
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;
|
|
};
|