Sintaxe
_.isError(object)
O método isError verifica se o objeto é um erro ou se herda de erro ou não. Veja o exemplo abaixo -
Exemplo
var _ = require('underscore');
//Example 1: Check if argument passed is an error
try{
throw new error("Test");
}catch(err){
console.log(_.isError(err));
}
//Example 2: Check if argument passed is an error
console.log(_.isError('Test'));
Salve o programa acima em tester.js. Execute o seguinte comando para executar este programa.
Comando
\>node tester.js
Resultado
true
false