diff options
author | Satya Rohith <me@satyarohith.com> | 2021-02-22 04:47:31 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-22 00:17:31 +0100 |
commit | 4f391ecec080044109aeb3d8fe24bc6636ac6fe0 (patch) | |
tree | 4ece1f616890150472f3f5ec545c77a64917476c /cli/tests/wasm_streaming.js | |
parent | 9d70ea2e9f03d7c12407f117cf11d2a99d55c8f8 (diff) |
chore: upgrade internal dprint plugins (#9566)
Co-authored-by: David Sherret <dsherret@gmail.com>
Diffstat (limited to 'cli/tests/wasm_streaming.js')
-rw-r--r-- | cli/tests/wasm_streaming.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cli/tests/wasm_streaming.js b/cli/tests/wasm_streaming.js index 6c9457325..1933425d7 100644 --- a/cli/tests/wasm_streaming.js +++ b/cli/tests/wasm_streaming.js @@ -16,8 +16,7 @@ const bytes = new Uint8Array([ ]); async function main() { - const wasm = await WebAssembly.instantiateStreaming(bytes, { - }); + const wasm = await WebAssembly.instantiateStreaming(bytes, {}); const result = wasm.instance.exports.add(1, 3); console.log("1 + 3 =", result); |