mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-01 20:46:08 +00:00
11 lines
243 B
TypeScript
11 lines
243 B
TypeScript
// snowflake type
|
|
export type Snowflake = string;
|
|
|
|
export const DiscordEpoch = 14200704e5;
|
|
|
|
// utilities for Snowflakes
|
|
export const Snowflake = {
|
|
snowflakeToTimestamp(id: Snowflake) {
|
|
return (Number(id) >> 22) + DiscordEpoch;
|
|
}
|
|
} |