ship-gis/node_modules/core-js/internals/shared.js
2026-01-22 09:14:01 +09: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 || {});
};