static isNegative()
in
index.js [61:63]
3
lines of code
2
McCabe index (conditional complexity)
static isNegative(n) { return n === 0 ? (1 / n < 0) : (n < 0); }