Urara-Blog/node_modules/.pnpm-store/v3/files/e6/0035f3442955aeae08ded584e90ce9f98ecf90eb7102dd47f820ec7e6395876087c2f72e809102aa4e419391a767757660f9c9c9aa4b1d32ae4499a4fc3607
2022-08-14 01:14:53 +08:00

3 lines
98 B
Text

export default function bigSign(bigIntValue) {
return (bigIntValue > 0n) - (bigIntValue < 0n)
}