From 014afb0c86eec5d1fb0a32b512e42d9c1f39e4cc Mon Sep 17 00:00:00 2001 From: n loewen Date: Mon, 4 Sep 2023 17:41:42 -0700 Subject: [PATCH] Remove one space --- opter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opter.js b/opter.js index bc83b21..1374678 100644 --- a/opter.js +++ b/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;