source: trip-planner-front/node_modules/core-js/modules/esnext.composite-key.js@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 580 bytes
Line 
1var $ = require('../internals/export');
2var getCompositeKeyNode = require('../internals/composite-key');
3var getBuiltIn = require('../internals/get-built-in');
4var create = require('../internals/object-create');
5
6var initializer = function () {
7 var freeze = getBuiltIn('Object', 'freeze');
8 return freeze ? freeze(create(null)) : create(null);
9};
10
11// https://github.com/tc39/proposal-richer-keys/tree/master/compositeKey
12$({ global: true }, {
13 compositeKey: function compositeKey() {
14 return getCompositeKeyNode.apply(Object, arguments).get('object', initializer);
15 }
16});
Note: See TracBrowser for help on using the repository browser.