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

This commit is contained in:
Jakob Ackermann 2020-05-18 18:25:27 +02:00
parent 1c9eaf574a
commit 853ee994a6

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)
}