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 | 3x 3x 3x 3x 3x 3x 16x 3432x 1009x 213x 7x 3x | import type {OtType} from '../types'; import type {StringOp} 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<string, StringOp> = { validate, normalize, apply, compose, transform, }; |