(p: string | undefined | null)
| 18 | const lastData: Record<string, string> = { ...(previousData || {}) } |
| 19 | |
| 20 | const normalize = (p: string | undefined | null) => |
| 21 | (p || '').replace(/^\.?\//, '') |
| 22 | |
| 23 | // Apply deletions first |
| 24 | for (const p of delta.deleted || []) { |
no outgoing calls
no test coverage detected