mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-19 07:20:00 +00:00
8 lines
275 B
TypeScript
8 lines
275 B
TypeScript
![]() |
/**
|
||
|
* @return Unix timestamp in milliseconds
|
||
|
*/
|
||
|
export function snowflakeToTimestamp(snowflake: string) {
|
||
|
// https://discord.com/developers/docs/reference#snowflakes-snowflake-id-format-structure-left-to-right
|
||
|
return Number(BigInt(snowflake) >> 22n) + 1420070400000;
|
||
|
}
|