Skip to main content
Module

x/rambda/rambda.js>flip

Faster and smaller alternative to Ramda
Latest
function flip
import { flip } from "https://deno.land/x/rambda@v9.2.0/rambda.js";

It returns function which calls fn with exchanged first and second argument.

Parameters

fn: (arg0: T, arg1: U) => TResult

Returns

(arg1: U, arg0?: T) => TResult