1
Konvensi ke tempat mendeklarasikan module.exports pada file Javascript
Apakah ada konvensi di mana kita harus mendeklarasikan module.exportsfile modul no Javascript / Node.js? Haruskah di awal file seperti: module.exports = Foo; function Foo() { this.bar = 'bar'; } Foo.prototype.getBar = function() { return this.bar; } Atau harus di akhir file: function Foo() { this.bar = 'bar'; } Foo.prototype.getBar = …