Files
knaeckeboot-eu/themes/bluewater/node_modules/tailwindcss/src/util/bigSign.js
T
Konstantin Kollar 8529ee86e4 Initial commit
2022-10-03 21:13:35 +02:00

4 lines
98 B
JavaScript

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