summaryrefslogtreecommitdiff
path: root/node_modules/tailwindcss/src/util/bigSign.js
blob: 8514aefb9cc91c5f31d85bf11136cdf322c6beb6 (plain) (blame)
1
2
3
export default function bigSign(bigIntValue) {
  return (bigIntValue > 0n) - (bigIntValue < 0n)
}