mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 04:09:31 +08:00
3 lines
98 B
Text
3 lines
98 B
Text
export default function bigSign(bigIntValue) {
|
|
return (bigIntValue > 0n) - (bigIntValue < 0n)
|
|
}
|