Home
last modified time | relevance | path

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

/third_party/node/typings/internalBinding/
Dtypes.d.ts3 isGeneratorFunction(value: unknown): value is GeneratorFunction;
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_util.js400 this.isGeneratorFunction = function (...args) { method
/third_party/node/lib/internal/util/
Dinspect.js127 isGeneratorFunction,
1191 if (isGeneratorFunction(value)) {
/third_party/node/doc/api/
Dutil.md2342 ### `util.types.isGeneratorFunction(value)`
2357 util.types.isGeneratorFunction(function foo() {}); // Returns false
2358 util.types.isGeneratorFunction(function* foo() {}); // Returns true
/third_party/node/tools/lint-md/
Dlint-md.mjs16343 var isGenFun = isGeneratorFunction(fn);
16403 if (isGeneratorFunction(obj)) {
16481 function isGeneratorFunction(obj) { function