mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-06 19:15:12 +02:00
7 lines
160 B
JavaScript
7 lines
160 B
JavaScript
'use strict';
|
|
var store = require('../internals/shared-store');
|
|
|
|
module.exports = function (key, value) {
|
|
return store[key] || (store[key] = value || {});
|
|
};
|