6 lines
137 B
JavaScript
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;
|
|
}
|