(value)
| 22 | ]); |
| 23 | |
| 24 | const normalizePath = (value) => { |
| 25 | const input = value.startsWith("file://") ? fileURLToPath(value) : value; |
| 26 | return path.resolve(input).replaceAll("\\", "/"); |
| 27 | }; |
| 28 | |
| 29 | const readCallsites = () => { |
| 30 | const previousPrepare = Error.prepareStackTrace; |
no outgoing calls
no test coverage detected