Files
pnpm/__utils__
Khải f071d00815 refactor: replace forEach with for-loops (#8535)
* refactor: replace `forEach` with `for`-loops

Changes:
* Most `Object.keys(o).forEach` are replaced by `for in`.
* Most `Array.filter(c).forEach` are replaced by `for of` + `if continue`.
* `return` in `forEach` callbacks are replaced by `continue`.

There may be minor improvement to memory footprint as this change would
reduce the creations of temporary arrays and temporary functions.

* fix: return -> continue

* refactor: remove the commented out code
2024-09-18 03:58:25 +02:00
..
2024-09-09 15:43:02 +02:00
2024-09-09 15:43:02 +02:00
2024-09-10 21:10:50 +02:00
2024-09-15 23:34:09 +02:00
2024-09-09 15:43:02 +02:00
2023-03-27 01:15:13 +03:00