UNPKG

tiny-sjis-encoder

Version:

Tiny Shift-JIS(MS932) encoder - Only 806 bytes

8 lines (7 loc) 184 B
/** * Encodes a string to Shift-JIS byte array * @param str - string to encode * @returns Shift-JIS encoded bytes */ declare function sjis(str: string): Uint8Array; export = sjis;