次のnodejsモジュールを作成しようとしています:
exports.method = function () {
var init = true;
return function (args) {
console.dir(args);
};
};
しかし、このメソッドを呼び出すと、コンソール メッセージが表示されません。
require('./module.js').method({test: 1});
関数を呼び出す代わりに関数を返します。