mirror of
https://github.com/jwetzell/psn-js.git
synced 2026-08-17 13:23:43 +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);
|