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