exports.printMsg = function() {
console.log("This is a message from the demo package");
};
exports.calcArea = function(width, height) {
if (isNaN(width) || isNaN(height)) {
console.log("Width and height must be numbers");
returnnull;
}
return width * height;
};