resolve
import { resolve } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/promise.ts";An alias for Promise.resolve.
@example
import { resolve } from "./promise.ts";
const result = await resolve(1); // 1
function resolve<A>(a: A | PromiseLike<A>): Promise<A>;