Skip to content

Commit

Permalink
Replaced let by var
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianZ committed Jan 11, 2022
1 parent 2762835 commit 562fbba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions csstest.js
Original file line number Diff line number Diff line change
Expand Up @@ -413,9 +413,9 @@ function runTests(filter = '') {
let specs = [];
let timeBefore = +new Date;

let removedWords = / *(?:\([^)]*\)|:.*|\b(?:CSS|Module)\b)( *)/g;
var removedWords = / *(?:\([^)]*\)|:.*|\b(?:CSS|Module)\b)( *)/g;

for (let spec in Specs) {
for (var spec in Specs) {
// Filter list of specifications
if (filter === 'stable' && Specs[spec].status && Specs[spec].status.stability !== 'stable') {
continue;
Expand Down

0 comments on commit 562fbba

Please sign in to comment.