Files
v10/dist/function.js

7 lines
330 B
JavaScript

import { composeCallbacks } from "./function/compose-callbacks.js";
import { identity } from "./function/identity.js";
import { noop } from "./function/noop.js";
import { throttle } from "./function/throttle.js";
import { tryCatch } from "./function/try-catch.js";
export { composeCallbacks, identity, noop, throttle, tryCatch };