export function isEqualBigInt(a: bigint, b: bigint): boolean {
    return a === b;
}