mirror of
https://github.com/jwetzell/psn-js.git
synced 2026-08-31 20:09:16 +00:00
5 lines
178 B
TypeScript
5 lines
178 B
TypeScript
import chunk from '../chunk.js';
|
|
const nameEncoder = new TextEncoder();
|
|
export default (systemName: string): Uint8Array =>
|
|
chunk(0x0001, nameEncoder.encode(systemName), false);
|