UNPKG

@monstermann/fn

Version:

A utility library for TypeScript.

10 lines 509 B
import { Debounced, debounce } from "./debounce.js"; import { Deferred, defer } from "./defer.js"; import { isPromise } from "./isPromise.js"; import { Limited, limit } from "./limit.js"; import { orElse } from "./orElse.js"; import { queue } from "./queue.js"; import { sleep } from "./sleep.js"; import { then } from "./then.js"; import { Throttled, throttle } from "./throttle.js"; export { Debounced, Deferred, Limited, Throttled, debounce, defer, isPromise, limit, orElse, queue, sleep, then, throttle };