mirror of
https://github.com/tribufu/node-gamedig
synced 2026-05-18 09:35:50 +00:00
Add support for FiveM closes #55
This commit is contained in:
parent
c30339d866
commit
4c18b6a3fd
6 changed files with 55 additions and 28 deletions
22
lib/HexUtil.js
Normal file
22
lib/HexUtil.js
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
class HexUtil {
|
||||
static debugDump(buffer) {
|
||||
let hexLine = '';
|
||||
let chrLine = '';
|
||||
let out = '';
|
||||
for(let i = 0; i < buffer.length; i++) {
|
||||
const sliced = buffer.slice(i,i+1);
|
||||
hexLine += sliced.toString('hex')+' ';
|
||||
let chr = sliced.toString();
|
||||
if(chr < ' ' || chr > '~') chr = ' ';
|
||||
chrLine += chr+' ';
|
||||
if(hexLine.length > 60 || i === buffer.length - 1) {
|
||||
out += hexLine + '\n';
|
||||
out += chrLine + '\n';
|
||||
hexLine = chrLine = '';
|
||||
}
|
||||
}
|
||||
return out;
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = HexUtil;
|
||||
Loading…
Add table
Add a link
Reference in a new issue