forked from lix-project/lix-website
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;
|
||
|
};
|