import { apply } from "https://deno.land/x/rambda@9.4.1/rambda.js";
It applies function fn
to the list of arguments.
This is useful for creating a fixed-arity function from a variadic function. fn
should be a bound function if context is significant.
Parameters
fn: (...args: any[]) => T