39
edits
Petermichaux (talk | contribs) |
Petermichaux (talk | contribs) (Undo revision 127596 by Petermichaux (Talk)) |
||
| Line 153: | Line 153: | ||
// math.js | // math.js | ||
// | // | ||
(function(require, exports) { | |||
exports.add = function() { | exports.add = function() { | ||
| Line 163: | Line 163: | ||
}; | }; | ||
}; | })(require, exports || (modules["math"] = {})); | ||
| Line 169: | Line 169: | ||
// increment.js | // increment.js | ||
// | // | ||
(function(require, exports) { | |||
var add = require('math').add; | var add = require('math').add; | ||
| Line 176: | Line 176: | ||
}; | }; | ||
}; | })(require, exports || (modules["increment"] = {})); | ||
edits