UNPKG

fast-sjis-encoder

Version:

Fast Shift-JIS(MS932) encoder - About 2x faster than iconv-lite

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;