UNPKG

sort-es

Version:

Blazing fast, tree-shakeable, type-safe, modern utility library to sort any type of array in less than 1 KB!

12 lines (11 loc) 382 B
import { SortOption } from "../interfaces/interfaces"; import { sortableWithOption } from "../types/types"; /** * the sortable for the boolean values * @param options sortable options for byBoolean * * {@link https://sort-es.netlify.app/by-boolean byBoolean docs} * @version 1.3.0 */ declare const byBoolean: sortableWithOption<boolean, SortOption>; export default byBoolean;