exports.add = function()

in calculator.js [1:3]


exports.add = function(a, b) {
	return a + b;
};