Initial commit
This commit is contained in:
+1
@@ -0,0 +1 @@
|
||||
module.exports = function (n) { return n * 3 };
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
var bar = require('./bar');
|
||||
|
||||
module.exports = function (n) {
|
||||
return n * bar(n);
|
||||
};
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
var foo = require('./foo');
|
||||
console.log(foo(5));
|
||||
Reference in New Issue
Block a user