UNPKG

83 BJavaScriptView Raw
1const isPositive = (x) => typeof x === "number" && x > 0;
2export {
3 isPositive
4};