UNPKG

@monstermann/fn

Version:

A utility library for TypeScript.

32 lines (31 loc) 1.59 kB
import { add } from "./add.js"; import { addAll } from "./addAll.js"; import { addOr } from "./addOr.js"; import { addOrElse } from "./addOrElse.js"; import { addOrThrow } from "./addOrThrow.js"; import { clone } from "./clone.js"; import { compact } from "./compact.js"; import { difference } from "./difference.js"; import { forEach } from "./forEach.js"; import { has } from "./has.js"; import { hasAll } from "./hasAll.js"; import { hasAny } from "./hasAny.js"; import { hasNone } from "./hasNone.js"; import { intersection } from "./intersection.js"; import { isDisjointFrom } from "./isDisjointFrom.js"; import { isEmpty } from "./isEmpty.js"; import { isSet } from "./isSet.js"; import { isShallowEqual } from "./isShallowEqual.js"; import { isSubsetOf } from "./isSubsetOf.js"; import { isSupersetOf } from "./isSupersetOf.js"; import { mapEach } from "./mapEach.js"; import { remove } from "./remove.js"; import { removeAll } from "./removeAll.js"; import { removeOr } from "./removeOr.js"; import { removeOrElse } from "./removeOrElse.js"; import { removeOrThrow } from "./removeOrThrow.js"; import { size } from "./size.js"; import { symmetricDifference } from "./symmetricDifference.js"; import { toArray } from "./toArray.js"; import { union } from "./union.js"; export { add, addAll, addOr, addOrElse, addOrThrow, clone, compact, difference, forEach, has, hasAll, hasAny, hasNone, intersection, isDisjointFrom, isEmpty, isSet, isShallowEqual, isSubsetOf, isSupersetOf, mapEach, remove, removeAll, removeOr, removeOrElse, removeOrThrow, size, symmetricDifference, toArray, union };