UNPKG

indexed-collection

Version:

A zero-dependency library of classes that make filtering, sorting and observing changes to arrays easier and more efficient.

4 lines (2 loc) 78 B
export type Optional<T> = T | undefined; export type Nullable<T> = T | null;