@monstermann/fn
Version:
A utility library for TypeScript.
36 lines (35 loc) • 1.75 kB
JavaScript
import { FnError } from "./FnError.js";
import { dfdl } from "./dfdl.js";
import { dfdlT } from "./dfdlT.js";
import { flow } from "./flow.js";
import { ifElse } from "./ifElse.js";
import { invoke } from "./invoke.js";
import { is } from "./is.js";
import { isAsyncIterable } from "./isAsyncIterable.js";
import { isBoolean } from "./isBoolean.js";
import { isDate } from "./isDate.js";
import { isError } from "./isError.js";
import { isFalsy } from "./isFalsy.js";
import { isFunction } from "./isFunction.js";
import { isImmutable } from "./isImmutable.js";
import { isIterable } from "./isIterable.js";
import { isMutable } from "./isMutable.js";
import { isMutating } from "./isMutating.js";
import { isNot } from "./isNot.js";
import { isPrimitive } from "./isPrimitive.js";
import { isRegExp } from "./isRegExp.js";
import { isSymbol } from "./isSymbol.js";
import { isTruthy } from "./isTruthy.js";
import { log } from "./log.js";
import { markAsImmutable } from "./markAsImmutable.js";
import { markAsMutable } from "./markAsMutable.js";
import { noop } from "./noop.js";
import { not } from "./not.js";
import { once } from "./once.js";
import { pauseMutations } from "./pauseMutations.js";
import { pipe } from "./pipe.js";
import { startMutations } from "./startMutations.js";
import { tap } from "./tap.js";
import { when } from "./when.js";
import { withMutations } from "./withMutations.js";
export { FnError, dfdl, dfdlT, flow, ifElse, invoke, is, isAsyncIterable, isBoolean, isDate, isError, isFalsy, isFunction, isImmutable, isIterable, isMutable, isMutating, isNot, isPrimitive, isRegExp, isSymbol, isTruthy, log, markAsImmutable, markAsMutable, noop, not, once, pauseMutations, pipe, startMutations, tap, when, withMutations };