apply
import { apply } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/sync.ts";Apply a function wrapped in a Sync to a value wrapped in a Sync.
@example
import { apply, wrap } from "./sync.ts";
import { pipe } from "./fn.ts";
const syncFn = wrap((n: number) => n * 2);
const syncValue = wrap(5);
const result = pipe(
syncFn,
apply(syncValue)
);
const value = result(); // 10