Get the absolute value of a [[Number]]
to absolute
string | number | boolean
import {N} from 'ts-toolbelt' type test0 = N.Absolute<'-20'> // '20' type test1 = N.Absolute<'-20', 's'> // '20' type test2 = N.Absolute<'-20', 'n'> // 20
Get the absolute value of a [[Number]]