Skip to content

Commit

Permalink
added missing file
Browse files Browse the repository at this point in the history
  • Loading branch information
trullock committed Mar 8, 2022
1 parent 3ac2a1d commit 59e876c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/NUglify.Tests/TestData/JS/Expected/Bugs/Bug300.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions src/NUglify.Tests/TestData/JS/Input/Bugs/Bug300.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
function test(p) {
return __awaiter(this, void 0, void 0, function* () {
let r = true;
for (let n = 1; n <= 5; n++)
if (!(yield isOk(p * n))) {
r = false;
break;
}
return r;
});
}

0 comments on commit 59e876c

Please sign in to comment.