(status, str)
| 461 | // designed to give info to browser users, who are disturbed |
| 462 | // when they see http errors in the console |
| 463 | function explainError(status, str) { |
| 464 | guardedConsole('info', 'The above ' + status + ' is totally normal. ' + str); |
| 465 | } |
| 466 | |
| 467 | class PouchError extends Error { |
| 468 | constructor(status, error, reason) { |
no test coverage detected
searching dependent graphs…