Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 | 58x | import { BaseError } from '../BaseError.ts';
/**
* Type guard to check if an error is a custom Ocap error (BaseError).
*
* @param error - The error to check.
* @returns `true` if the error is an instance of BaseError.
*/
export function isOcapError(error: Error): error is BaseError {
return error instanceof BaseError;
}
|