mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
Merge pull request #151 from overleaf/jpa-perf-parser
[perf] add a few short cuts to the packet decoding
This commit is contained in:
@@ -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)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user