(obj)
| 6 | return new CSVError("unclosed_quote", index, extra); |
| 7 | } |
| 8 | static fromJSON(obj) { |
| 9 | return new CSVError(obj.err, obj.line, obj.extra); |
| 10 | } |
| 11 | constructor( |
| 12 | public err: string, |
| 13 | public line: number, |
no outgoing calls
no test coverage detected