makearmy-app/node_modules/tailwindcss/src/util/bigSign.js
2025-09-22 10:37:53 -04:00

3 lines
98 B
JavaScript

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