UNPKG

@discord-user-card/core

Version:

The core behind the Discord User Card project.

10 lines 309 B
const DISCORD_EPOCH = 1420070400000; /** * Convert a user ID to a Unix timestamp. * @param userId The user ID to convert. * @returns The Unix timestamp. */ export function userIdToTimestamp(userId) { return Number(BigInt(userId) >> 22n) + DISCORD_EPOCH; } //# sourceMappingURL=userIdToTimestamp.js.map