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 ); } |