Remove one space
This commit is contained in:
parent
4dec08afbc
commit
014afb0c86
2
opter.js
2
opter.js
|
|
@ -96,7 +96,7 @@ module.exports = class Opts {
|
|||
if (name in this.opts) return true;
|
||||
if (name in this.synonyms) {
|
||||
const syns = this.synonyms[name];
|
||||
const hits = syns.filter(s => s in this.opts ).length;
|
||||
const hits = syns.filter(s => s in this.opts).length;
|
||||
if (hits > 0) { return true; }
|
||||
}
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Reference in New Issue