Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
erwinmombay committed Jul 19, 2019
1 parent e4910be commit 512f12c
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,9 @@ module.exports = function(babel) {
const {callee} = node;
const {parenthesized} = node.extra || {};

const isDirectCallExpression =
t.isIdentifier(callee, {name: 'devAssert'});
const isDirectCallExpression = t.isIdentifier(callee, {
name: 'devAssert',
});
const isMemberAndCallExpression =
t.isMemberExpression(callee) && t.isCallExpression(callee.object);

Expand Down

0 comments on commit 512f12c

Please sign in to comment.