()
| 89 | // this will improve performance in some test(some test will |
| 90 | // set stackTraceLimit to 0, https://github.com/angular/zone.js/issues/698 |
| 91 | function stackTracesEnabled(): boolean { |
| 92 | // Cast through any since this property only exists on Error in the nodejs |
| 93 | // typings. |
| 94 | return (Error as any).stackTraceLimit > 0; |
| 95 | } |
| 96 | |
| 97 | type LongStackTraceZoneSpec = ZoneSpec & {longStackTraceLimit: number}; |
| 98 |
no outgoing calls
no test coverage detected
searching dependent graphs…