swc/crates/swc_bundler/tests/.cache/deno/ce6629bb5596b83000d106bd7268ea0da5135a26.ts

11 lines
282 B
TypeScript
Raw Normal View History

// 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();
}