source: trip-planner-front/node_modules/engine.io-parser/lib/commons.js@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 557 bytes
Line 
1const PACKET_TYPES = Object.create(null); // no Map = no polyfill
2PACKET_TYPES["open"] = "0";
3PACKET_TYPES["close"] = "1";
4PACKET_TYPES["ping"] = "2";
5PACKET_TYPES["pong"] = "3";
6PACKET_TYPES["message"] = "4";
7PACKET_TYPES["upgrade"] = "5";
8PACKET_TYPES["noop"] = "6";
9
10const PACKET_TYPES_REVERSE = Object.create(null);
11Object.keys(PACKET_TYPES).forEach(key => {
12 PACKET_TYPES_REVERSE[PACKET_TYPES[key]] = key;
13});
14
15const ERROR_PACKET = { type: "error", data: "parser error" };
16
17module.exports = {
18 PACKET_TYPES,
19 PACKET_TYPES_REVERSE,
20 ERROR_PACKET
21};
Note: See TracBrowser for help on using the repository browser.