[perf] add a few short cuts to the packet decoding

This commit is contained in:
Jakob Ackermann
2020-06-09 15:26:17 +01:00
parent 1c9eaf574a
commit 853ee994a6
+10
View File
@@ -47,3 +47,13 @@ function patchedFrameHandler(opcode, str) {
}
return outputBuffer;
}
const parser = require('socket.io/lib/parser')
const decodePacket = parser.decodePacket
parser.decodePacket = function (data) {
if (typeof data !== 'string') return {}
const firstColon = data.indexOf(':')
if (firstColon === -1) return {}
if (data.indexOf(':', firstColon + 1) === -1) return {}
return decodePacket(data)
}