File size: 98 Bytes
bc20498 |
1 2 3 4 |
export default function bigSign(bigIntValue) {
return (bigIntValue > 0n) - (bigIntValue < 0n)
}
|
bc20498 |
1 2 3 4 |
export default function bigSign(bigIntValue) {
return (bigIntValue > 0n) - (bigIntValue < 0n)
}
|