UNPKG

fast-iterable

Version:

Provides LINQ-like fluent api operations for iterables and async iterables (ES2018+).

8 lines (7 loc) 413 B
import { FluentAsyncIterable } from '.'; /** * Return true when the informed value is an fluent async iterable, and false otherwise * @param value the value to be analyzed * @returns The return is also a type guard, ie, inside an if with that function, the value will be considered an fluent async iterable */ export declare function isFluentAsyncIterable<T>(value: unknown): value is FluentAsyncIterable<T>;