()
| 7 | const globalThis = window; |
| 8 | (() => { |
| 9 | const enosys = () => { |
| 10 | const err = new Error("not implemented"); |
| 11 | err.code = "ENOSYS"; |
| 12 | return err; |
| 13 | }; |
| 14 | |
| 15 | if (!globalThis.fs) { |
| 16 | let outputBuf = ""; |
no outgoing calls
no test coverage detected