aboutsummaryrefslogtreecommitdiff
path: root/lib/compile-handler.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/compile-handler.js')
-rw-r--r--lib/compile-handler.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compile-handler.js b/lib/compile-handler.js
index b9ab1a2b9..d2094c3bb 100644
--- a/lib/compile-handler.js
+++ b/lib/compile-handler.js
@@ -162,7 +162,7 @@ function CompileHandler(gccProps, compilerProps) {
}
options = _.chain(quote.parse(options || '')
.map(function (x) {
- if (typeof(x) == "string") return x;
+ if (typeof(x) === "string") return x;
return x.pattern;
}))
.filter(_.identity)