Skip to main content
Module

x/ramda/mod.ts>on

:ram: Practical functional Javascript
Latest
variable on
import { on } from "https://deno.land/x/ramda@v0.27.2/mod.ts";

Takes a binary function f, a unary function g, and two values. Applies g to each value, then applies the result of each to f.

Also known as the P combinator.