astro-ghostcms/.pnpm-store/v3/files/e6/0035f3442955aeae08ded584e90...

4 lines
98 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
export default function bigSign(bigIntValue) {
return (bigIntValue > 0n) - (bigIntValue < 0n)
}