You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Changes the implementation of `allMarshal` to follow closely the
evolution of the implementation of `all`.
Adds a script that can be run as `npm run test:memory` to check
for obvious memory leaks.
Prior to this fix, a typical run looked like:
```
0 8081154048
1000 7443259392
2000 6777753600
3000 6128287744
4000 5500166144
5000 4849360896
6000 4221939712
7000 3558346752
8000 2960449536
9000 2309222400
10000 1655738368
11000 1019441152
```
After this fix, a typical run looks like:
```
0 8291295232
1000 8268148736
2000 8252329984
3000 8253804544
4000 8252588032
5000 8261718016
6000 8248782848
7000 8268709888
8000 8249749504
9000 8258523136
10000 8242008064
11000 8255168512
```
0 commit comments