UNPKG

rambda

Version:

Lightweight and faster alternative to Ramda with included TS definitions

10 lines (8 loc) 156 B
export function when(predicate, whenTrueFn) { return input => { if (!predicate(input)) { return input } return whenTrueFn(input) } }