UNPKG

fast-eucjp-encoder

Version:

Fast EUC-JP(CP51932) encoder - About 2x faster than iconv-lite

8 lines (7 loc) 180 B
/** * Encodes a string to EUC-JP byte array * @param str - string to encode * @returns EUC-JP encoded bytes */ declare function eucjp(str: string): Uint8Array; export = eucjp;