settings.js
546 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
* Module dependencies.
*/
var config = require('./index');
/**
* Initialize settings.
*/
exports = module.exports = function(lib, app) {
var settings = new Settings(config);
return settings;
}
/**
* Component annotations.
*/
exports['@singleton'] = true;
/**
* Settings component
*/
function Settings(initial) {
if(initial)
this._hash = initial;
else
this._hash = {};
}
Settings.prototype.get = function(key) {
return this._hash[key];
}
Settings.prototype.set = function(key, val) {
this._hash[key] = val;
}