UNPKG

@0xpolygonid/js-sdk

Version:
12 lines (11 loc) 266 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.bigIntCompare = void 0; const bigIntCompare = (a, b) => { if (a < b) return -1; if (a > b) return 1; return 0; }; exports.bigIntCompare = bigIntCompare;