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
- Host: GitHub
- URL: https://github.com/if1live/map-limit-swc-vs-tsc
- Owner: if1live
- Created: 2021-06-21T08:36:08.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-06-21T08:51:49.000Z (almost 4 years ago)
- Last Synced: 2025-02-02T18:14:45.365Z (4 months ago)
- Language: TypeScript
- Size: 7.81 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# map-limit-swc-vs-tsc
## tsc
```
$ npm run start:tscp-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:swcp-limit: start
10
20
30
40
50
[ 20, 40, 60, 80, 100 ]
p-limit: finish
async: start
10
20
```???