mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
6 lines
356 B
TypeScript
6 lines
356 B
TypeScript
import { composeCallbacks } from "./function/compose-callbacks.js";
|
|
import { identity } from "./function/identity.js";
|
|
import { noop } from "./function/noop.js";
|
|
import { Throttled, throttle } from "./function/throttle.js";
|
|
import { tryCatch } from "./function/try-catch.js";
|
|
export { type Throttled, composeCallbacks, identity, noop, throttle, tryCatch }; |