b4964bcf35
Replaces many loops of the form: ```js for (let i = 0; i < elements.length; ++i) { const i = elements[i]; ... } ``` with: ```js for (const element of elements) { ... } ``` Mix of a horrible regex based find/replace and manual touch ups |
||
---|---|---|
.. | ||
.vscode | ||
src | ||
testWorkspace | ||
testWorkspace2 | ||
.gitignore | ||
.vscodeignore | ||
package.json | ||
testworkspace.code-workspace | ||
tsconfig.json | ||
yarn.lock |