(value: string)
| 25 | } |
| 26 | |
| 27 | function normalizePathLike(value: string): string { |
| 28 | return value.replace(/\\/g, '/').replace(/^\.\//, ''); |
| 29 | } |
| 30 | |
| 31 | export function normalizeMemoryScope(raw: unknown): MemoryScope | undefined { |
| 32 | if (!isRecord(raw)) return undefined; |
no outgoing calls
no test coverage detected