all
import { all } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/promise.ts";An alias for Promise.all
@example
import { all, wrap } from "./promise.ts";
const result = await all(wrap(1), wrap("Hello")); // [1, "Hello"]