Merge pull request #151 from overleaf/jpa-perf-parser

[perf] add a few short cuts to the packet decoding
This commit is contained in:
Jakob Ackermann 2020-06-10 11:27:50 +02:00 committed by GitHub
commit 5b85e0154d

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