MCPcopy Create free account
hub / github.com/RtlZeroMemory/Rezi / compareBigInt

Function compareBigInt

packages/core/src/debug/debugController.ts:97–101  ·  view source on GitHub ↗
(a: bigint, b: bigint)

Source from the content-addressed store, hash-verified

95}
96
97function compareBigInt(a: bigint, b: bigint): number {
98 if (a < b) return -1;
99 if (a > b) return 1;
100 return 0;
101}
102
103function isStructuredDrawlistRecordCode(code: number): boolean {
104 return code === DEBUG_CODE_DRAWLIST_VALIDATE || code === DEBUG_CODE_DRAWLIST_EXECUTE;

Callers 1

exportBundleFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected