mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-29 07:25:05 +08:00
11 lines
353 B
JavaScript
11 lines
353 B
JavaScript
|
|
var IS_PURE = require('../internals/is-pure');
|
||
|
|
var store = require('../internals/shared-store');
|
||
|
|
|
||
|
|
(module.exports = function (key, value) {
|
||
|
|
return store[key] || (store[key] = value !== undefined ? value : {});
|
||
|
|
})('versions', []).push({
|
||
|
|
version: '3.19.1',
|
||
|
|
mode: IS_PURE ? 'pure' : 'global',
|
||
|
|
copyright: '© 2021 Denis Pushkarev (zloirock.ru)'
|
||
|
|
});
|