static isNegative()

in index.js [61:63]


	static isNegative(n) {
		return n === 0 ? (1 / n < 0) : (n < 0);
	}