mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
fe60eab99c
* test: enable e2e * test: improve setup * chore: update setup * test: publish on temp folder * chore: initial setup example * chore: add global install to pnpm * chore: update test script * test: add info command * chore: add install tests * chore: add debug enabled code * chore: update pnpm lock file
18 lines
420 B
JavaScript
18 lines
420 B
JavaScript
const namespace = Object.create(null);
|
|
import buildDebug from 'debug';
|
|
|
|
const debug = buildDebug('verdaccio:e2e:global');
|
|
|
|
exports.addItem = function (name, value) {
|
|
namespace[name] = value;
|
|
};
|
|
|
|
exports.getItem = function (name) {
|
|
debug('get-item %o:%o', name, namespace);
|
|
if (!(name in namespace)) {
|
|
throw new Error('The item '.concat(name, ' does exist in the namespace'));
|
|
}
|
|
|
|
return namespace[name];
|
|
};
|