Files
discordeno/util/bigint.ts
2022-02-11 09:49:53 +00:00

8 lines
203 B
TypeScript

export function snowflakeToBigint(snowflake: string) {
return BigInt(snowflake) | 0n;
}
export function bigintToSnowflake(snowflake: bigint) {
return snowflake === 0n ? "" : snowflake.toString();
}