12 lines
165 B
JavaScript
12 lines
165 B
JavaScript
function Module()
|
|
{
|
|
this.active = function()
|
|
{
|
|
console.log("Nothing to do.");
|
|
}
|
|
|
|
this.passive = function()
|
|
{
|
|
console.log("Nothing to do.");
|
|
}
|
|
} |