mirror of https://github.com/nodejs/node.git
10 lines
103 B
JavaScript
10 lines
103 B
JavaScript
|
function foo() {
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
function bar() {
|
||
|
return 'bar';
|
||
|
}
|
||
|
|
||
|
module.exports = { foo, bar };
|