From eb192455fb2f503747d3ab231db95741929a8621 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Mon, 17 Nov 2014 09:56:22 -0500 Subject: [PATCH] chore(util) checkExt: !!isMatch -> isMatch --- lib/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util.js b/lib/util.js index ac2160d5..5229e148 100644 --- a/lib/util.js +++ b/lib/util.js @@ -56,7 +56,7 @@ break; } - return !!isMatch; + return isMatch; }; this.check = new checkProto();