You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
601 B
16 lines
601 B
'use strict';
|
|
var IS_PURE = require('../internals/is-pure');
|
|
var globalThis = require('../internals/global-this');
|
|
var defineGlobalProperty = require('../internals/define-global-property');
|
|
|
|
var SHARED = '__core-js_shared__';
|
|
var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
|
|
|
|
(store.versions || (store.versions = [])).push({
|
|
version: '3.38.1',
|
|
mode: IS_PURE ? 'pure' : 'global',
|
|
copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
|
|
license: 'https://github.com/zloirock/core-js/blob/v3.38.1/LICENSE',
|
|
source: 'https://github.com/zloirock/core-js'
|
|
});
|