UNPKG

string-from-charcodes

Version:

An alternative to String.fromCharCode that doesn't throw with many arguments, while still remaining fast.

3 lines (2 loc) 142 B
declare const fromCharCodes: (charCodes: ArrayLike<number> | Uint8Array | Uint16Array | Uint32Array) => string; export default fromCharCodes;