exports.multiply = function()

in calculator.js [9:11]


exports.multiply = function(a, b) {
	return a * b;
};