Check if all nodes of a type match a predicate
const allColumnsQualified = every( ast, (node) => getExprType(node) !== 'column' || getExprData(node).table !== null); Copy
const allColumnsQualified = every( ast, (node) => getExprType(node) !== 'column' || getExprData(node).table !== null);
Check if all nodes of a type match a predicate