@tsdotnet/linq
Version:
A familiar set of functions that operate on JavaScript iterables (ES2015+) in a similar way to .NET's LINQ does with enumerables.
10 lines (9 loc) • 434 B
TypeScript
import * as filters from './filters';
import * as iterables from './iterables';
import linq from './linq';
import linqExtended from './linqExtended';
import * as resolutions from './resolutions';
import * as transforms from './transforms';
export type { IterableTransform, IterableValueTransform, IterableFilter, } from './IterableTransform';
export { filters, iterables, resolutions, transforms, linqExtended };
export default linq;