Initial commit
This commit is contained in:
17
frontend/webapp/node_modules/object.groupby/shim.js
generated
vendored
Normal file
17
frontend/webapp/node_modules/object.groupby/shim.js
generated
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
'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;
|
||||
};
|
||||
Reference in New Issue
Block a user