UNPKG
slurpcord
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Simple API wrapper for Discord
github.com/slurpy-films/slurpcord
slurpy-films/slurpcord
slurpcord
/
src
/
cache
/
dmchannels.js
12 lines
(10 loc)
•
250 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
const
cache =
new
Map
();
export
function
getDMchannel
(
userId
) {
if
(cache.
has
(userId)) {
return
cache.
get
(userId); }
return
null
; }
export
function
addDMchannel
(
userId, dmchannel
) { cache.
set
(userId, dmchannel); }