shared.js 492 B

12345678910111213
  1. 'use strict';
  2. var IS_PURE = require('../internals/is-pure');
  3. var store = require('../internals/shared-store');
  4. (module.exports = function (key, value) {
  5. return store[key] || (store[key] = value !== undefined ? value : {});
  6. })('versions', []).push({
  7. version: '3.33.1',
  8. mode: IS_PURE ? 'pure' : 'global',
  9. copyright: '© 2014-2023 Denis Pushkarev (zloirock.ru)',
  10. license: 'https://github.com/zloirock/core-js/blob/v3.33.1/LICENSE',
  11. source: 'https://github.com/zloirock/core-js'
  12. });