Staram się stworzyć jeden moduł, który zawiera wiele funkcji.
module.js:
module.exports = function(firstParam) { console.log("You did it"); },
module.exports = function(secondParam) { console.log("Yes you did it"); },
// This may contain more functions
main.js:
var foo = require('module.js')(firstParam);
var bar = require('module.js')(secondParam);
Problem, który mam, polega na tym, że firstParam
jest to typ obiektu, a secondParam
jest to ciąg adresu URL, ale gdy mam, zawsze narzeka, że ten typ jest nieprawidłowy.
Jak mogę zadeklarować wiele eksportów module.w tym przypadku?