UNPKG
@discord-user-card/core
Version:
latest (0.0.9)
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
The core behind the Discord User Card project.
@discord-user-card/core
/
lib
/
functions
/
mapDiscordImageHash.js
13 lines
•
319 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/** * 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