(path: string)
| 14 | // String manipulation is easier here, fileURLToPath is only in newer Nodes, |
| 15 | // plus setting non-standard protocols on URL objects is difficult. |
| 16 | export const createOutsideJestVmPath = (path: string): string => |
| 17 | `${OUTSIDE_JEST_VM_PROTOCOL}//${encodeURIComponent(path)}`; |
| 18 | export const decodePossibleOutsideJestVmPath = ( |
| 19 | outsideJestVmPath: string, |
| 20 | ): string | undefined => { |
no outgoing calls
no test coverage detected