📜  Lodash _.isError() 方法

📅  最后修改于: 2022-05-13 01:56:26.269000             🧑  作者: Mango

Lodash _.isError() 方法

Lodash _.isError() 方法检查给定值是否为错误类型并返回相应的布尔值。

句法:

_.isError( value )

参数:此方法接受上面提到的单个参数,如下所述:

  • value:此参数保存要检查错误的值。

返回值:此方法返回一个布尔值(如果给定值是错误则返回 true,否则返回 false)。

示例 1:

Javascript
// Defining Lodash variable 
const _ = require('lodash'); 
  
// Checking for Error Value 
console.log("The Value is Error : "
        + _.isError(new Error));


Javascript
// Defining Lodash variable 
const _ = require('lodash'); 
  
// Checking for Error Value 
console.log("The Value is Error : "
        +_.isError("Err"));


输出:

The Value is Error : true

示例 2:

Javascript

// Defining Lodash variable 
const _ = require('lodash'); 
  
// Checking for Error Value 
console.log("The Value is Error : "
        +_.isError("Err"));

输出:

The Value is Error : false