Type alias Abs<N>

Abs<N>: `${N}` extends `-${infer M extends Numeric}`
    ? M
    : N

Get the absolute value of a numeric N

Type Parameters

Example

Abs<-54>; // Result: 54
Abs<54>; // Result: 54

Returns

|N|