UNPKG
steamworkers-webapi
Version:
latest (1.1.2)
1.1.2
api for steamworks
github.com/Gratrunka/steamworkers-webapi
Gratrunka/steamworkers-webapi
steamworkers-webapi
/
src
/
schema
/
Player.js
11 lines
(10 loc)
•
221 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
;