I have a project where I need to display djvu schemas in browser.
I found this old library on Github which, as far as I understood, converts djvu files to bmp and th
var buffer = new ArrayBuffer(32); new Blob([buffer]);
so the Uint8Array should be
new Blob([new Uint8Array([1, 2, 3, 4]).buffer]);