Pratyush-01's picture
Upload folder using huggingface_hub
08f8699 verified
export default function bigSign(bigIntValue) {
return (bigIntValue > 0n) - (bigIntValue < 0n)
}