exports.subtract = function()

in calculator.js [5:7]


exports.subtract = function(a, b) {
	return a - b;
};