mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-26 10:08:06 +02:00
This makes `gulp externaltest` work again. It looks like this wasn't validated before, but is now after recent package updates.
17 lines
128 B
JavaScript
17 lines
128 B
JavaScript
function f1() {
|
|
"1";
|
|
"2";
|
|
}
|
|
function f2() {
|
|
"1";
|
|
"2";
|
|
}
|
|
function f3() {
|
|
if ("1") {
|
|
"1";
|
|
}
|
|
"2";
|
|
if ("3") {
|
|
"4";
|
|
}
|
|
}
|