util.types.isGeneratorFunction()方法是util模块的内置应用程序编程接口,主要用于满足Node.js自身内部API的需求。util.types.isGeneratorFunction()方法用于检查给定值是否为生成器函数与否。
用法:
util.types.isGeneratorFunction( value )
参数:该函数接受上面提到并在下面描述的一个参数:
- value:它是将检查生成器函数的值。
返回值:它返回一个布尔值,即如果传递的值是一个生成器函数,则返回true;否则返回false。
以下程序说明了Node.js中的util.types.isGeneratorFunction()方法:
范例1:
Node.js
// Node.js program to demonstrate the
// util.types.isGeneratorFunction() method
// Import the util module
const util = require('util');
// Getting the generator function
let GeneratorFunction =
Object.getPrototypeOf(function*(){}).constructor
// Checking the generator function
let genFn = new GeneratorFunction();
console.log(genFn);
isGenFn = util.types.isGeneratorFunction(genFn);
console.log("Object is a generator function:", isGenFn);
// Checking a normal function
let normalFn = function helloWorld() {};
console.log(normalFn);
isGenFn = util.types.isGeneratorFunction(normalFn);
console.log("Object is a generator function:", isGenFn);
输出:
[GeneratorFunction:anonymous] Object is a generator function:true [Function:helloWorld] Object is a generator function:false
范例2:
Node.js
// Node.js program to demonstrate the
// util.types.isGeneratorFunction() method
// Import the util module
const util = require('util');
// Checking a generator function
let genFn = function* getID() {
let id = 0;
while (true)
yield id++;
};
console.log(genFn);
isGenFn = util.types.isGeneratorFunction(genFn);
console.log("Object is a generator function:", isGenFn);
// Checking a normal function
let normalFn = function helloGeeks() {
console.log("Hello World")
};
console.log(normalFn);
isGenFn = util.types.isGeneratorFunction(normalFn);
console.log("Object is a generator function:", isGenFn);
输出:
[GeneratorFunction:getID] Object is a generator function:true [Function:helloGeeks] Object is a generator function:false
参考: https://nodejs.org/api/util.html#util_util_types_isgeneratorfunction_value
相关用法
注:本文由纯净天空筛选整理自sayantanm19大神的英文原创作品 Node.js | util.types.isGeneratorFunction() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。