binconv
Version:
Binary converters for Blob, Uint8Array, ReadableStream, ArrayBuffer, string in JavaScript/TypeScript
9 lines • 320 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
function uint8ArrayToString(array) {
var decoder = new TextDecoder();
return decoder.decode(array);
}
exports.uint8ArrayToString = uint8ArrayToString;
exports.default = uint8ArrayToString;
//# sourceMappingURL=uint8ArrayToString.js.map