Files
InfoGenie/frontend/node_modules/tailwindcss/src/util/bigSign.js

4 lines
98 B
JavaScript

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