Code style: Fix ESLint "no-empty-function" errors

Part of #407.
redux
David Majda 8 years ago
parent fd07f64637
commit 80a9e03614

@ -7,7 +7,9 @@ let visitor = {
return functions[node.type].apply(null, arguments);
}
function visitNop() { }
function visitNop() {
// Do nothing.
}
function visitExpression(node) {
let extraArgs = Array.prototype.slice.call(arguments, 1);

Loading…
Cancel
Save