rDrama/node_modules/tailwindcss/lib/util/bigSign.js
2021-12-13 22:28:32 +00:00

10 lines
No EOL
191 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = bigSign;
function bigSign(bigIntValue) {
return (bigIntValue > 0n) - (bigIntValue < 0n);
}