(message: string, options?: DiffOptions)
| 30 | export { Diff, DIFF_DELETE, DIFF_EQUAL, DIFF_INSERT } |
| 31 | |
| 32 | function getCommonMessage(message: string, options?: DiffOptions) { |
| 33 | const { commonColor } = normalizeDiffOptions(options) |
| 34 | return commonColor(message) |
| 35 | } |
| 36 | |
| 37 | const { |
| 38 | AsymmetricMatcher, |
no test coverage detected