util.types.isGeneratorObject()方法是util模块的内置应用程序编程接口,其主要设计用于满足Node.js自己的内部API的需求。 util.types.isGeneratorObject()方法用于检查给定值是否是生成器对象。
用法:
util.types.isGeneratorObject( value )
参数:该函数接受单个参数值,该参数值包含将针对生成器对象检查的值。
返回值:它返回一个布尔值,即如果传递的值是一个生成器对象,则返回true,否则返回false。
以下程序说明了Node.js中的util.types.isGeneratorObject()方法:
范例1:
// Node.js program to demonstrate the
// util.types.isGeneratorObject() method
// Import the util module
const util = require('util');
// Creating a generator function
let GeneratorFunction =
Object.getPrototypeOf(function*(){}).constructor
let genFn = new GeneratorFunction();
// Checking the generator object
let genObj = genFn();
console.log(genObj);
isGenObj = util.types.isGeneratorObject(genObj);
console.log("Object is a generator object:", isGenObj);
// Checking a normal object
normalObj = {a:"1", b:"2"};
console.log(normalObj);
isGenObj = util.types.isGeneratorObject(normalObj);
console.log("Object is a generator object:", isGenObj);
输出:
Object [Generator] {} Object is a generator object:true { a:'1', b:'2' } Object is a generator object:false
范例2:
// Node.js program to demonstrate the
// util.types.isGeneratorObject() method
// Import the util module
const util = require('util');
// Creating a generator function
let genFn = function* generateNumber() {
let id = 0;
while (true)
yield id++;
};
// Checking the generator object
let genObj = genFn();
console.log(genObj);
isGenObj = util.types.isGeneratorObject(genObj);
console.log("Object is a generator object:", isGenObj);
// Checking a normal object
normalObj = {arg1:"1", arg2:"2"};
console.log(normalObj);
isGenObj = util.types.isGeneratorObject(normalObj);
console.log("Object is a generator object:", isGenObj);
输出:
Object [Generator] {} Object is a generator object:true { arg1:'1', arg2:'2' } Object is a generator object:false
参考: https://nodejs.org/api/util.html#util_util_types_isgeneratorobject_value
相关用法
注:本文由纯净天空筛选整理自sayantanm19大神的英文原创作品 Node.js | util.types.isGeneratorObject() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。