UNPKG

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