moduleEx2.js 89 Bytes Raw Blame History Permalink 1 2 3 4 5 6 exports.add = function(a,b) { return a+b; } exports.sub = function(a,b) { return a-b; }