Skip to main content
Go to Latest
File
export function abs_bigint(a: bigint): bigint { return a < 0 ? -a : a;}