deno_graph icon indicating copy to clipboard operation
deno_graph copied to clipboard

refactor: represent module source as `[u8]`

Open lucacasonato opened this issue 3 years ago • 0 comments

Previously module source was represented as String. This does not work for non-textual formats like WASM. As such, module source is now represented as [u8].

In JS, the module source is now represented as a Uint8Array.

Towards #150

lucacasonato avatar Apr 28 '22 12:04 lucacasonato