UNPKG
bugly.js
Version:
latest (0.0.2)
0.0.2
0.0.1
Bugly.js helps beginners and time-pressed people!
bugly.js
/
functions
/
getDevice.js
6 lines
(5 loc)
•
159 B
JavaScript
View Raw
1
2
3
4
5
6
function
getDevice
(member)
{ const
status
= member.presence?.clientStatus;
return
status
? Object.keys(
status
) : []; }
module
.exports = { getDevice }