frontend/.pnpm-store/v3/files/e6/0035f3442955aeae08ded584e90ce9f98ecf90eb7102dd47f820ec7e6395876087c2f72e809102aa4e419391a767757660f9c9c9aa4b1d32ae4499a4fc3607

4 lines
98 B
Plaintext

export default function bigSign(bigIntValue) {
return (bigIntValue > 0n) - (bigIntValue < 0n)
}