Files
30-seconds-of-code/test/when/when.js
2018-04-19 20:55:17 +00:00

2 lines
89 B
JavaScript

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