mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-25 17:48:07 +02:00
Enable the unicorn/prefer-ternary
ESLint plugin rule
To limit the readability impact of these changes, the `only-single-line` option was used; please find additional details at https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-ternary.md These changes were done automatically, using the `gulp lint --fix` command.
This commit is contained in:
parent
8f83a1359e
commit
674e7ee381
31 changed files with 123 additions and 265 deletions
|
@ -559,11 +559,7 @@ class CFFParser {
|
|||
validationCommand = CharstringValidationData[value];
|
||||
} else if (value === 10 || value === 29) {
|
||||
let subrsIndex;
|
||||
if (value === 10) {
|
||||
subrsIndex = localSubrIndex;
|
||||
} else {
|
||||
subrsIndex = globalSubrIndex;
|
||||
}
|
||||
subrsIndex = value === 10 ? localSubrIndex : globalSubrIndex;
|
||||
if (!subrsIndex) {
|
||||
validationCommand = CharstringValidationData[value];
|
||||
warn("Missing subrsIndex for " + validationCommand.id);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue