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