| 201 | * `false` otherwise. |
| 202 | */ |
| 203 | export const isUnauthenticatedError = error => |
| 204 | grpcStatusCode(error) === 16 || httpStatusCode(error) === 401 |
| 205 | |
| 206 | /** |
| 207 | * Returns whether the grpc error represents a conflict with the current state on the server. |
no test coverage detected