| 9 | const AsyncFunction = Object.getPrototypeOf(async function(){}).constructor; |
| 10 | |
| 11 | export class SQLiteError extends Error { |
| 12 | constructor(message, code) { |
| 13 | super(message); |
| 14 | this.code = code; |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | const async = true; |
| 19 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…