UNPKG

@discord-user-card/core

Version:

The core behind the Discord User Card project.

13 lines 319 B
/** * Maps a Discord image hash to a user card image */ export function mapDiscordImageHash(hash) { if (!hash) return undefined; const animated = hash.startsWith("a_"); return { animated, id: animated ? hash.slice(2) : hash, }; } //# sourceMappingURL=mapDiscordImageHash.js.map