util.types.isAsyncFunction()方法是util模块的内置应用程序编程接口,用于对node.js中的异步函数进行类型检查。
用法:
util.types.isAsyncFunction( value )
参数:此方法接受上述和以下描述的单个参数:
- value:它是包含任何数据类型的必需参数。
返回值:从JavaScript引擎的角度来看,它返回一个布尔值TRUE(如果该值是异步函数),否则返回FALSE。
以下示例说明了Node.js中util.types.isAsyncFunction()方法的使用:
范例1:
// Node.js program to demonstrate the
// util.types.isAsyncFunction() Method
// Allocating util module
const util = require('util');
// Functions to be passed as parameter of
// util.types.isAsyncFunction() method
var f2 = async function function2(){}
var f1 = function function1(){}
// Printing the returned value from
// util.types.isAsyncFunction() method
console.log(util.types.isAsyncFunction(f2));
console.log(util.types.isAsyncFunction(f1));
输出:
true false
范例2:
// Node.js program to demonstrate the
// util.types.isAsyncFunction() Method
// Allocating util module
const util = require('util');
// Functions to be passed as parameter
var f2 = async function function2() { }
var f1 = function function1() { }
// Calling util.types.isAsyncFunction() method
if (util.types.isAsyncFunction(f2))
console.log("The passed value is an Async function.");
else
console.log("The passed value is not an Async function");
if (util.types.isAsyncFunction(f1))
console.log("The passed value is an Async function.");
else
console.log("The passed value is not an Async function");
输出:
The passed value is an Async function. The passed value is not an Async function
注意:上面的程序将通过使用node filename.js
命令。
参考: https://nodejs.org/api/util.html#util_util_types_isasyncfunction_value
相关用法
- Node.js GM resize()用法及代码示例
- Node.js GM threshold()用法及代码示例
- Node.js GM thumbnail()用法及代码示例
- Node.js GM transparent()用法及代码示例
- Node.js GM lower()用法及代码示例
- Node.js GM contrast()用法及代码示例
- Node.js GM negative()用法及代码示例
- Node.js GM scale()用法及代码示例
- Node.js GM operator()用法及代码示例
注:本文由纯净天空筛选整理自gekcho大神的英文原创作品 Node.js | util.types.isAsyncFunction() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。