https://github.com/angular/angular
Raw File
Tip revision: 0a2191f8e7e232087aab0a7a9eb9ee6871580267 authored by Alex Rickabaugh on 12 May 2021, 18:13:50 UTC
Revert "refactor(core): optimize calls to `split` and `slice` while computing version parts (#41208)"
Tip revision: 0a2191f
SAMPLE.md
# Sample

### Basic Sample

use `zone.js` and `long-stack-trace-zone.js` to display longStackTrace information in html.
[basic](https://stackblitz.com/edit/zonejs-basic?file=index.js)

### Async Task Counting Sample

use `zone.js` to monitor async tasks and print the count info. 
[counting](https://stackblitz.com/edit/zonejs-counting?file=index.js)

### Profiling Sample

use `zone.js` to profiling sort algorithm.
[profiling](https://stackblitz.com/edit/zonejs-profiling?file=index.js)

### Throttle with longStackTrace

use `long-stack-trace-zone` to display full flow of complex async operations such as throttle XHR requests.
[throttle](https://stackblitz.com/edit/zonejs-throttle?file=index.js)


back to top