Home
last modified time | relevance | path

Searched refs:isGeneratorFunction (Results 1 – 4 of 4) sorted by relevance

/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_util.js400 this.isGeneratorFunction = function (...args) { method
/third_party/node/lib/internal/util/
Dinspect.js97 isGeneratorFunction,
1121 if (isGeneratorFunction(value)) {
/third_party/node/doc/api/
Dutil.md1606 ### `util.types.isGeneratorFunction(value)`
1620 util.types.isGeneratorFunction(function foo() {}); // Returns false
1621 util.types.isGeneratorFunction(function* foo() {}); // Returns true
/third_party/node/tools/
Dlint-md.mjs55329 var isGenFun = isGeneratorFunction(fn);
55428 if (isGeneratorFunction(obj)) {
55566 function isGeneratorFunction(obj) { function