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