Pratyush-01's picture
Upload folder using huggingface_hub
9d1374f verified
Raw
History Blame Contribute Delete
98 Bytes
export default function bigSign(bigIntValue) {
return (bigIntValue > 0n) - (bigIntValue < 0n)
}