All files / src/utils index.ts

100% Statements 31/31
100% Branches 0/0
100% Functions 0/0
100% Lines 31/31
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34  15x 15x 15x 15x 15x 15x 15x 15x 15x 15x 15x 15x 15x 15x 15x 15x 15x 15x 15x 15x 15x 15x 15x 15x 15x 15x 15x 15x 15x 15x 15x    
import sExpression from './sExpression';
import describe from './describe';
import conform from "./conform";
import isValid from "./isValid";
import isNamespacePath from "./isNamespacePath";
import identity from "./identity";
import isProblem from "./isProblem";
import enforce from "./enforce";
import isClause from "./isClause";
import isFclause from "./isFclause";
import isClauseRef from "./isClauseRef";
import deref from "./deref";
import isClauseName from "./isClauseName";
import match from "./match";
import delayed from "./delayed";
 
export {
  conform,
  isValid,
  isNamespacePath,
  identity,
  isProblem,
  delayed,
  enforce,
  isClause,
  isFclause,
  isClauseRef,
  deref,
  isClauseName,
  describe,
  sExpression,
  match,
};