All files / src/utils isExpr.ts

85.71% Statements 6/7
0% Branches 0/4
0% Functions 0/1
85.71% Lines 6/7
1 2 3 4 5 6 7 8 9 10 11  15x 15x 15x 15x 15x          
import isPred from './isPred';
import isClause from './isClause';
import isClauseRef from './isClauseRef';
import isDelayedClause from './isDelayedClause';
 
export default function isExpr( x ) {
  return isPred( x ) ||
    isClause( x ) ||
    isClauseRef( x ) ||
    isDelayedClause( x );
}