UNPKG

arr-helper-functions

Version:

Misc. functions for finding elements in arrays, sorting, and more

8 lines (4 loc) 194 B
export type ObjectLike = { [prop: string]: any }; export type AccessorFunction = (d: any) => any; export type IndexerFunction = (d: any) => string; export type ArrayOfObjects = ObjectLike[];