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.
*
* 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 AsyncGenerator} Determine result.
*/
export function isAsyncGenerator(item: unknown): item is AsyncGenerator {