debian-mirror-gitlab/core-js/internals/shared.js

11 lines
352 B
JavaScript
Raw Normal View History

2019-09-25 13:30:05 +05:30
var IS_PURE = require('../internals/is-pure');
2019-10-31 01:37:42 +05:30
var store = require('../internals/shared-store');
2019-09-25 13:30:05 +05:30
(module.exports = function (key, value) {
return store[key] || (store[key] = value !== undefined ? value : {});
})('versions', []).push({
2019-10-31 01:37:42 +05:30
version: '3.3.5',
2019-09-25 13:30:05 +05:30
mode: IS_PURE ? 'pure' : 'global',
copyright: '© 2019 Denis Pushkarev (zloirock.ru)'
});