O
Size: a a a
O
NC
NC
NC
VJ
NC
NC
NC
МD
МD
МD
OB
class Client {
PORT = 8282;
USER_AGENT = 'Secret Nodejs client';
MIME_TYPE = 'application/json';
ROOT_ROUTE = '/';
constructor({ host, token, port }) {
this.port = port !== undefined ? port : this.PORT;
this.host = host;
this.token = token;
}
}
PORT = 9292;
^
SyntaxError: Unexpected token =
꧁岡
class Client {
PORT = 8282;
USER_AGENT = 'Secret Nodejs client';
MIME_TYPE = 'application/json';
ROOT_ROUTE = '/';
constructor({ host, token, port }) {
this.port = port !== undefined ? port : this.PORT;
this.host = host;
this.token = token;
}
}
PORT = 9292;
^
SyntaxError: Unexpected token =
OB
V
OB
OB
OB