diff options
author | Thomas Tay <thomastayac@gmail.com> | 2022-12-19 12:50:37 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-19 12:50:37 -0800 |
commit | 4dd8b6ac322c93db20e8c40867c2cd6bb454589a (patch) | |
tree | 71b6476b536a1a30beff42a7a2d6e9608deaa470 /docs/demo | |
parent | 344e7d282013c5d58d9d540d3f49e3d7445033ff (diff) | |
download | wabt-4dd8b6ac322c93db20e8c40867c2cd6bb454589a.tar.gz wabt-4dd8b6ac322c93db20e8c40867c2cd6bb454589a.tar.bz2 wabt-4dd8b6ac322c93db20e8c40867c2cd6bb454589a.zip |
Typo in previous PR causing unbalanced braces (#2106)
Sorry, fixed now. Didn't balance my braces.
Thats what you get for editing in the Github editor, opened this file in vscode with the fix now, and no problems reported
Diffstat (limited to 'docs/demo')
-rw-r--r-- | docs/demo/wat2wasm/demo.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/demo/wat2wasm/demo.js b/docs/demo/wat2wasm/demo.js index 1fcd42cb..66f44736 100644 --- a/docs/demo/wat2wasm/demo.js +++ b/docs/demo/wat2wasm/demo.js @@ -119,7 +119,7 @@ function compile() { binaryBuffer = binaryOutput.buffer; // binaryBuffer is a Uint8Array, so we need to convert it to a string to use btoa // https://stackoverflow.com/questions/12710001/how-to-convert-uint8-array-to-base64-encoded-string - outputBase64 = btoa((String.fromCharCode.apply(null, binaryBuffer)); + outputBase64 = btoa(String.fromCharCode.apply(null, binaryBuffer)); var blob = new Blob([binaryOutput.buffer]); if (binaryBlobUrl) { |