(path)
| 7 | // More details: https://kripken.github.io/emscripten-site/docs/api_reference/module.html |
| 8 | const wasm = fib({ |
| 9 | locateFile(path) { |
| 10 | if (path.endsWith(`.wasm`)) { |
| 11 | return fibonacciModule |
| 12 | } |
| 13 | return path |
| 14 | }, |
| 15 | }) |
| 16 | |
| 17 | export default wasm |
nothing calls this directly
no outgoing calls
no test coverage detected