PromoCursed/node_modules/core-js/internals/shared.js
2024-08-20 23:25:37 +04:00

7 lines
160 B
JavaScript

'use strict';
var store = require('../internals/shared-store');
module.exports = function (key, value) {
return store[key] || (store[key] = value || {});
};