UNPKG

98 BJavaScriptView Raw
1export default function bigSign(bigIntValue) {
2 return (bigIntValue > 0n) - (bigIntValue < 0n)
3}