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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。