www_hero/node_modules/tailwindcss/lib/util/bigSign.js

9 lines
194 B
JavaScript
Raw Normal View History

2024-05-03 04:39:20 +00:00
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = bigSign;
function bigSign(bigIntValue) {
return (bigIntValue > 0n) - (bigIntValue < 0n);
}