All files / json-ot/types/ot-binary-irreversible index.ts

100% Statements 17/17
100% Branches 0/0
60% Functions 3/5
100% Lines 12/12

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23    2x 2x 2x 2x 2x   2x 2x 3402x 1002x 202x 2x   2x              
import type {OtType} from '../types';
import type {BinaryOp} from './types';
import {validate} from './validate';
import {normalize} from './util';
import {apply} from './apply';
import {compose} from './compose';
import {transform} from './transform';
 
export * from './types';
export {validate} from './validate';
export {apply} from './apply';
export {compose} from './compose';
export {transform} from './transform';
export {normalize} from './util';
 
export const type: OtType<Uint8Array, BinaryOp> = {
  validate,
  normalize,
  apply,
  compose,
  transform,
};