/var/www/qr4y.com/server/delivery/node_modules/engine.io-parser/build/cjs
NameSizeModeActions
contrib/-0755rm
commons.js7680644editdlrm
decodePacket.browser.js16810644editdlrm
decodePacket.js15320644editdlrm
encodePacket.browser.js15150644editdlrm
encodePacket.js9540644editdlrm
index.js16360644editdlrm
package.json1820644editdlrm
Edit: /var/www/qr4y.com/server/delivery/node_modules/engine.io-parser/build/cjs/commons.js (768B)
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ERROR_PACKET = exports.PACKET_TYPES_REVERSE = exports.PACKET_TYPES = void 0; const PACKET_TYPES = Object.create(null); // no Map = no polyfill exports.PACKET_TYPES = PACKET_TYPES; PACKET_TYPES["open"] = "0"; PACKET_TYPES["close"] = "1"; PACKET_TYPES["ping"] = "2"; PACKET_TYPES["pong"] = "3"; PACKET_TYPES["message"] = "4"; PACKET_TYPES["upgrade"] = "5"; PACKET_TYPES["noop"] = "6"; const PACKET_TYPES_REVERSE = Object.create(null); exports.PACKET_TYPES_REVERSE = PACKET_TYPES_REVERSE; Object.keys(PACKET_TYPES).forEach(key => { PACKET_TYPES_REVERSE[PACKET_TYPES[key]] = key; }); const ERROR_PACKET = { type: "error", data: "parser error" }; exports.ERROR_PACKET = ERROR_PACKET;