(error: unknown)
| 437 | const jsonStringDescription = "a JSON string" |
| 438 | |
| 439 | export const writeJsonSyntaxErrorProblem = (error: unknown): string => { |
| 440 | if (!(error instanceof SyntaxError)) throw error |
| 441 | return `must be ${jsonStringDescription} (${error})` |
| 442 | } |
| 443 | |
| 444 | const jsonRoot = rootSchema({ |
| 445 | meta: jsonStringDescription, |
no outgoing calls
no test coverage detected
searching dependent graphs…