(message: string)
| 16 | |
| 17 | class JSONishSyntaxError extends Error { |
| 18 | constructor(message: string) { |
| 19 | super(message); |
| 20 | this.name = "JSONishSyntaxError"; |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | const isPlainObject = (value: unknown): value is Record<string, unknown> => { |
nothing calls this directly
no outgoing calls
no test coverage detected