(error: any)
| 142 | * Reads monkey-patched error code from the given Error instance. |
| 143 | */ |
| 144 | export function getRuntimeErrorCode(error: any): number | undefined { |
| 145 | return error[NG_RUNTIME_ERROR_CODE]; |
| 146 | } |
| 147 | |
| 148 | function formatErrorMessage( |
| 149 | text: string, |
no outgoing calls
no test coverage detected
searching dependent graphs…