fix linting error

This commit is contained in:
Sebastian McKenzie
2015-01-05 10:24:23 +11:00
parent ed833be34a
commit b8d4479333

View File

@@ -2,7 +2,7 @@ var t = require("../../types");
exports.optional = true;
exports.UnaryExpression = function (node, parent, file, scope) {
exports.UnaryExpression = function (node, parent, file) {
if (node.operator === "typeof") {
return t.callExpression(file.addHelper("typeof"), [node.argument]);
}