Files
30-seconds-of-code/test/when/when.js
2018-04-18 20:49:43 -04:00

2 lines
89 B
JavaScript

const when = (pred, whenTrue) => (x) => pred(x) ? whenTrue(x) : x;
module.exports = when;