7 lines
110 B
JavaScript
Raw Normal View History

function MyTestModule()
{
this.getValue = function () { return 1245; };
}
module.exports = MyTestModule;