UNPKG

rambdax

Version:

Extended version of Rambda - a lightweight, faster alternative to Ramda

11 lines (8 loc) 196 B
import { curry } from './curry.js' function unlessFn( predicate, whenFalseFn, input ){ if (predicate(input)) return input return whenFalseFn(input) } export const unless = curry(unlessFn)