function bindimport { bind } from "https://deno.land/x/rambda@9.2.1/mod.ts"; bind<F extends AnyFunction, T>(fn: F, thisObj: T): (...args: Parameters<F>) => ReturnType<F>Creates a function that is bound to a context. bind<F extends AnyFunction, T>(fn: F): (thisObj: T) => (...args: Parameters<F>) => ReturnType<F>Creates a function that is bound to a context. Type ParametersF extends AnyFunctionTParametersfn: FthisObj: TReturns(...args: Parameters<F>) => ReturnType<F>Type ParametersF extends AnyFunctionTParametersfn: FReturns(thisObj: T) => (...args: Parameters<F>) => ReturnType<F>