arr-helper-functions
Version:
Misc. functions for finding elements in arrays, sorting, and more
20 lines (19 loc) • 479 B
text/typescript
export {
isInArray,
isNotInArray,
areInArray,
isInAnyArray,
areInAnyArray,
areInSameArray,
} from './modules/find';
export { FastArraySearcher } from './modules/fastFind';
export { distinctValues } from './modules/unique';
export { filterFalsyValues } from './modules/filter';
export {
getBestSortingFunction,
sortArray,
ArraySorter,
SortingFunction,
getFirstAndLastElement,
} from './modules/sort';
export { isNotEmpty, isEmpty } from './modules/content';