• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1import { strictEqual } from 'assert';
2
3export function jsFn () {
4  state = 'WASM JS Function Executed';
5  return 42;
6}
7
8export let state = 'JS Function Executed';
9
10export function jsInitFn () {
11  strictEqual(state, 'JS Function Executed');
12  state = 'WASM Start Executed';
13}