Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 3 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | export function isAPIError(error) { |
||
2 | return (error instanceof Error) && error.name === 'APIError'; |
||
3 | } |