nodeschool learnyounode node.js使它成为模块

时间:2015-07-20 16:18:29

标签: node.js

我试图解决这个问题,这是我的代码

module.js

var module=require("./module.js");
module(process.argv[2],process.argv[3],function(err,list){
if(err) return console.log("error",err);
list.forEach(function(v){
    console.log(v)
})
})

和world.js

xcode-select --install

当我尝试验证它时,它说我失败= ?提交结果与预期不符! ?没有使用额外的模块文件,你必须要求()一个模块来帮助sol 这个练习

FAIL

您制作IT模块的解决方案并未通过。再试一次! 我确实包括模块,问题出在哪里?

0 个答案:

没有答案