Files
opencrm/frontend/node_modules/tailwindcss/src/util/bigSign.js
T
Stefan Hacker 31f807fbd0 first commit
2026-01-29 01:16:54 +01:00

4 lines
98 B
JavaScript

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