Nicolò Ribaudo 64f14b05fa
Collect comments around parentheses in expressions (#13803)
Co-authored-by: Brian Ng <bng412@gmail.com>
2021-10-05 20:15:24 +02:00

6 lines
137 B
JavaScript

if (args[0] === 1 || /* istanbul ignore next */ (args[0] === 2 || args[0] === 3)) {
output = args[0] + 10;
} else {
output = 20;
}