UNPKG

123 BJavaScriptView Raw
1const identity = (x) => x;
2const always = () => true;
3const never = () => false;
4export {
5 always,
6 identity,
7 never
8};