Files
30-seconds-of-code/test/when/when.js
2018-08-02 13:49:33 +03:00

3 lines
90 B
JavaScript

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