INNER CODE UNIT · JavaScript

u

gideros/gideros · emscripten/gidloader.js:66

        u=u.slice(4,len+4);
        if (fmt=="array")
        {
            canv.width=1;
            canv.height=1;
            cb(u);
            return;
        }
        bb = new Blob([u]);
    }
    canv.width=1;
    canv.height=1;
    
    var f = new FileReader();
    f.onload = function(e) {
    	cb(e.target.result);
    };
    f.readAsText(bb);

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…