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