UNPKG

rambda

Version:

Lightweight and faster alternative to Ramda with included TS definitions

10 lines (8 loc) 159 B
export function unless(predicate, whenFalseFn) { return input => { if (predicate(input)) { return input } return whenFalseFn(input) } }