Last change
on this file since 6a80231 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
557 bytes
|
Line | |
---|
1 | const PACKET_TYPES = Object.create(null); // no Map = no polyfill
|
---|
2 | PACKET_TYPES["open"] = "0";
|
---|
3 | PACKET_TYPES["close"] = "1";
|
---|
4 | PACKET_TYPES["ping"] = "2";
|
---|
5 | PACKET_TYPES["pong"] = "3";
|
---|
6 | PACKET_TYPES["message"] = "4";
|
---|
7 | PACKET_TYPES["upgrade"] = "5";
|
---|
8 | PACKET_TYPES["noop"] = "6";
|
---|
9 |
|
---|
10 | const PACKET_TYPES_REVERSE = Object.create(null);
|
---|
11 | Object.keys(PACKET_TYPES).forEach(key => {
|
---|
12 | PACKET_TYPES_REVERSE[PACKET_TYPES[key]] = key;
|
---|
13 | });
|
---|
14 |
|
---|
15 | const ERROR_PACKET = { type: "error", data: "parser error" };
|
---|
16 |
|
---|
17 | module.exports = {
|
---|
18 | PACKET_TYPES,
|
---|
19 | PACKET_TYPES_REVERSE,
|
---|
20 | ERROR_PACKET
|
---|
21 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.