mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
293 B
19 lines
293 B
14 years ago
|
foo2 = "foo2";
|
||
|
global.bar2 = "bar2";
|
||
|
|
||
|
|
||
|
exports.globalKeys = function () {
|
||
|
return Object.getOwnPropertyNames(global);
|
||
|
};
|
||
|
|
||
|
exports.allFooBars = function () {
|
||
|
return {
|
||
|
foo0: global.foo0,
|
||
|
bar0: bar0,
|
||
|
foo1: global.foo1,
|
||
|
bar1: bar1,
|
||
|
foo2: global.foo2,
|
||
|
bar2: bar2
|
||
|
};
|
||
|
};
|