main
Last change
on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
596 bytes
|
Rev | Line | |
---|
[d24f17c] | 1 | 'use strict';
|
---|
| 2 | var IS_PURE = require('../internals/is-pure');
|
---|
| 3 | var globalThis = require('../internals/global');
|
---|
| 4 | var defineGlobalProperty = require('../internals/define-global-property');
|
---|
| 5 |
|
---|
| 6 | var SHARED = '__core-js_shared__';
|
---|
| 7 | var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
|
---|
| 8 |
|
---|
| 9 | (store.versions || (store.versions = [])).push({
|
---|
| 10 | version: '3.36.0',
|
---|
| 11 | mode: IS_PURE ? 'pure' : 'global',
|
---|
| 12 | copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
|
---|
| 13 | license: 'https://github.com/zloirock/core-js/blob/v3.36.0/LICENSE',
|
---|
| 14 | source: 'https://github.com/zloirock/core-js'
|
---|
| 15 | });
|
---|
Note:
See
TracBrowser
for help on using the repository browser.