An open API service indexing awesome lists of open source software.

https://github.com/if1live/map-limit-swc-vs-tsc


https://github.com/if1live/map-limit-swc-vs-tsc

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# map-limit-swc-vs-tsc

## tsc
```
$ npm run start:tsc

p-limit: start
10
20
30
40
50
[ 20, 40, 60, 80, 100 ]
p-limit: finish
async: start
10
20
30
40
50
[ 20, 40, 60, 80, 100 ]
async: finish
```

## swc
```
$ npm run start:swc

p-limit: start
10
20
30
40
50
[ 20, 40, 60, 80, 100 ]
p-limit: finish
async: start
10
20
```

???