You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Determine whether the item is an asynchronous generator function.
*
* This only reports back what the JavaScript engine is seeing; In particular, the return value may not match the original source code if a transpilation tool was used.
* @param {unknown} item Item that need to determine.
* @returns {item is AsyncGeneratorFunction} Determine result.
*/
export function isAsyncGeneratorFunction(item: unknown): item is AsyncGeneratorFunction {