diginext-utils
Version:
README.md
27 lines • 941 B
TypeScript
/**
* Array utility functions
* @module array
*/
export { sum } from "./sum";
export { average } from "./average";
export { min } from "./min";
export { max } from "./max";
export { sortByString } from "./sortByString";
export { sortByNumber } from "./sortByNumber";
export { first } from "./first";
export { last } from "./last";
export { randomIndex } from "./randomIndex";
export { randomElement } from "./randomElement";
export { unique } from "./unique";
export { intersection } from "./intersection";
export { removeItem } from "./removeItem";
export { removeItemByKey } from "./removeItemByKey";
export { sample } from "./sample";
export { shuffle } from "./shuffle";
export { moveElement } from "./moveElement";
export { chunk } from "./chunk";
export { compact } from "./compact";
export { flatten } from "./flatten";
export { difference } from "./difference";
export { union } from "./union";
//# sourceMappingURL=index.d.ts.map