(Module)
| 20 | } |
| 21 | |
| 22 | function mountDirectories(Module) { |
| 23 | for (const dir of rootDirsToMount(Module)) { |
| 24 | Module.FS.mkdirTree(dir); |
| 25 | Module.FS.mount(Module.FS.filesystems.NODEFS, { root: dir }, dir); |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | const thisProgram = "--this-program="; |
| 30 | const thisProgramIndex = process.argv.findIndex((x) => |
no test coverage detected
searching dependent graphs…