Right now we work only with require: ```js if(!( node.type === 'CallExpression' && node.callee.type === 'Identifier' && node.callee.name === 'require' && Object(node.arguments[0]).value )) return; ``` we could process imports too.