Skip to main content
Module

x/isx/mod.ts>isAsyncIterable

TypeScript-first is function collections
Go to Latest
function isAsyncIterable
import { isAsyncIterable } from "https://deno.land/x/isx@1.0.0-beta.19/mod.ts";

Whether the value is AsyncIterable or not.

Parameters

value: unknown
  • Any value.
import { isAsyncIterable } from "https://deno.land/x/isx@$VERSION/mod.ts"
import { assertEquals } from "https://deno.land/std@$VERSION/testing/asserts.ts"
assertEquals(
isAsyncIterable({
async *[Symbol.asyncIterator]() {
yield "hello";
},
}),
true,
);
assertEquals(isAsyncIterable(() => {}), false);

Returns

value is AsyncIterable<T>