我有这个文件:greetings.js
function greetings () {
return {
hello: function () {
return 'hello';
},
bye: function () {
lostfunction.write ('this is function does not exists');
return 'bye';
}
};
}
module.exports = greetings;
在再见函数中有一个未定义的对象或函数:" lostfunction",但Jshint不显示警告或错误;只是在浏览器控制台中我得到:
未捕获的ReferenceError:未定义lostfunction
所有加载器都无法显示此类错误?