10 lines
No EOL
191 B
JavaScript
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);
|
|
} |