Returns a boolean for whether the given number is a negative number.
Negative
import type {IsNegative} from 'type-fest';type ShouldBeFalse = IsNegative<1>;type ShouldBeTrue = IsNegative<-1>; Copy
import type {IsNegative} from 'type-fest';type ShouldBeFalse = IsNegative<1>;type ShouldBeTrue = IsNegative<-1>;
Returns a boolean for whether the given number is a negative number.