6 lines
126 B
JavaScript
6 lines
126 B
JavaScript
fetch('./payload.bin').then(res => {
|
|
res.arrayBuffer().then(arr => {
|
|
window.pld = new Uint32Array(arr);
|
|
|
|
})
|
|
}) |