2019-07-13 09:07:41 +09:00

7 lines
119 B
JavaScript

function Module (name, docs = 'Missing documentation.') {
this.name = name
this.methods = {}
this.docs = docs
}