mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
change const to let
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
const runners: RunnerBase[] = [];
|
||||
const iterations = 1;
|
||||
/* eslint-disable prefer-const */
|
||||
let runners: RunnerBase[] = [];
|
||||
let iterations = 1;
|
||||
/* eslint-enable prefer-const */
|
||||
|
||||
function runTests(runners: RunnerBase[]) {
|
||||
for (let i = iterations; i > 0; i--) {
|
||||
|
||||
Reference in New Issue
Block a user