mirror of
https://github.com/jwetzell/psn-js.git
synced 2026-08-16 04:43:40 +00:00
10 lines
224 B
JavaScript
10 lines
224 B
JavaScript
const Parser = require('binary-parser').Parser;
|
|
|
|
module.exports = new Parser()
|
|
.uint64le('packet_timestamp')
|
|
.uint8('version_high')
|
|
.uint8('version_low')
|
|
.uint8('frame_id')
|
|
.uint8('frame_packet_count')
|
|
.seek(4);
|