source: frontend/node_modules/object.groupby/index.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 406 bytes
Line 
1'use strict';
2
3var define = require('define-properties');
4var callBind = require('call-bind');
5
6var implementation = require('./implementation');
7var getPolyfill = require('./polyfill');
8var polyfill = getPolyfill();
9var shim = require('./shim');
10
11var bound = callBind(polyfill, Object);
12
13define(bound, {
14 getPolyfill: getPolyfill,
15 implementation: implementation,
16 shim: shim
17});
18
19module.exports = bound;
Note: See TracBrowser for help on using the repository browser.