(message: string)
| 41 | } |
| 42 | |
| 43 | function patchError(message: string): Error { |
| 44 | return new Error(`Invalid patch: ${message}`); |
| 45 | } |
| 46 | |
| 47 | export function parsePatch(patch: string): PatchAction[] { |
| 48 | const lines = patchLines(patch); |
no outgoing calls
no test coverage detected