mirror of
https://github.com/jwetzell/psn-js.git
synced 2026-08-15 12:23:58 +00:00
8 lines
183 B
JavaScript
8 lines
183 B
JavaScript
const chunk = require('../chunk');
|
|
|
|
module.exports = (timestamp) => {
|
|
const buf = Buffer.alloc(8);
|
|
buf.writeBigUInt64LE(BigInt(timestamp));
|
|
return chunk(0x0006, buf, false);
|
|
};
|