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