blob: 83a1cff908add0879c9a81a58e73417c9433fb23 [file]
// assigning to exports will not modify module, must use module.exports
module.exports = function(width) {
return {
area: function() {
return width * width;
}
};
}