UNPKG

indexed-collection

Version:

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

7 lines (5 loc) 238 B
import { CollectionNature } from './CollectionNature'; import { type ICollectionOption } from './ICollectionOption'; export const defaultCollectionOption: Readonly<ICollectionOption> = Object.freeze({ nature: CollectionNature.Set, });