source: trip-planner-front/node_modules/core-js/internals/shared.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: 353 bytes
Line 
1var IS_PURE = require('../internals/is-pure');
2var store = require('../internals/shared-store');
3
4(module.exports = function (key, value) {
5 return store[key] || (store[key] = value !== undefined ? value : {});
6})('versions', []).push({
7 version: '3.16.0',
8 mode: IS_PURE ? 'pure' : 'global',
9 copyright: '© 2021 Denis Pushkarev (zloirock.ru)'
10});
Note: See TracBrowser for help on using the repository browser.