mirror of
https://github.com/discordeno/discordeno.git
synced 2026-05-30 07:20:08 +00:00
8 lines
203 B
TypeScript
8 lines
203 B
TypeScript
export function snowflakeToBigint(snowflake: string) {
|
|
return BigInt(snowflake) | 0n;
|
|
}
|
|
|
|
export function bigintToSnowflake(snowflake: bigint) {
|
|
return snowflake === 0n ? "" : snowflake.toString();
|
|
}
|