Check whether a [[Number]] is negative or not
to check
Boolean
import {N} from 'ts-toolbelt' type test0 = N.IsNegative<'0'> // False type test1 = N.IsNegative<'-7'> // True type test2 = N.IsNegative<'7'> // False
Check whether a [[Number]] is negative or not