shared.js 478 B

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