Spaces:
Sleeping
Sleeping
File size: 289 Bytes
08f8699 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | "use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "default", {
enumerable: true,
get: function() {
return bigSign;
}
});
function bigSign(bigIntValue) {
return (bigIntValue > 0n) - (bigIntValue < 0n);
}
|