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