Skip to content

Commit 6775296

Browse files
committed
Add semicolons to js file in wasm bindgen test
1 parent d351c5f commit 6775296

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/wasm_bindgen/js/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
const rand_wasm_bindgen_test = require('./rand_wasm_bindgen_test');
44

5-
console.log(rand_wasm_bindgen_test.generate_from_entropy())
6-
console.log(rand_wasm_bindgen_test.generate_from_os_rand())
7-
console.log(rand_wasm_bindgen_test.generate_from_seed())
5+
console.log(rand_wasm_bindgen_test.generate_from_entropy());
6+
console.log(rand_wasm_bindgen_test.generate_from_os_rand());
7+
console.log(rand_wasm_bindgen_test.generate_from_seed());

0 commit comments

Comments
 (0)