UNPKG
steamapi-cloudflare-workers
Version:
latest (2.5.1)
2.5.1
2.5.0
A nice Steam API wrapper for Cloudflare Workers
github.com/xDimGG/node-steamapi
xDimGG/node-steamapi
steamapi-cloudflare-workers
/
src
/
structures
/
Player.js
11 lines
(10 loc)
•
211 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
class
Player
{
/** *
@type
{
string
} The permalink to this players profile. *
@readonly
*/
get
profileURL
() {
return
`https://steamcommunity.com/profiles/
${
this
.steamID}
`
; } }
module
.
exports
=
Player
;