Skip to content

Commit

Permalink
Merge import and export statements together in index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorn3 committed Feb 1, 2023
1 parent 7219829 commit 8f3b50d
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
import WASI from "./wasi.js"
import { File } from "./fs_core.js"
import { PreopenDirectory } from "./fs_fd.js"
import { strace } from "./strace.js"
export { WASI };

export {
WASI,
File,
PreopenDirectory,
strace,
};
export { File } from "./fs_core.js"
export { PreopenDirectory } from "./fs_fd.js"
export { strace } from "./strace.js"

0 comments on commit 8f3b50d

Please sign in to comment.