bigSign.js 258 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "default", { enumerable: true, get: ()=>bigSign }); function bigSign(bigIntValue) { return (bigIntValue > 0n) - (bigIntValue < 0n); }