swc/crates/swc_bundler/tests/.cache/deno/ce6629bb5596b83000d106bd7268ea0da5135a26.ts
2021-11-09 20:42:49 +09:00

11 lines
282 B
TypeScript

// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/util/bigint.ts
export function snowflakeToBigint(snowflake: string) {
return BigInt(snowflake) | 0n;
}
export function bigintToSnowflake(snowflake: bigint) {
return snowflake === 0n ? "" : snowflake.toString();
}