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 24 25 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | /** * Diff wire formats. Turns a `LinePatch` plus the two line arrays it was * computed from into each of the output styles, and (from E4) back again. The * formats are as reusable as the algorithms: an editor, a review UI or a sync * layer wants a unified diff without a shell attached. * * Nothing in `str`, `line` or `lines` imports this, so callers that only diff * never load it. */ export * from './apply'; export * from './colors'; export * from './context'; export * from './ed'; export * from './flags'; export * from './groups'; export * from './hunks'; export * from './ifdef'; export * from './normal'; export * from './parse'; export * from './rcs'; export * from './side'; export * from './tabs'; export * from './types'; export * from './unified'; |