Skip to content

Commit

Permalink
fix(html-diff): add missing export
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamChelman committed Jul 19, 2024
1 parent 8ad34db commit 5f863bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/html-diff/src/lib/Diff.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const specialCaseClosingTags = new Map([

const specialCaseOpeningTagRegex = /<((strong)|(b)|(i)|(dfn)|(em)|(big)|(small)|(u)|(sub)|(sup)|(strike)|(s))[\>\s]+/gi;

class HtmlDiff {
export class HtmlDiff {
private content: string[] = [];
private specialTagDiffStack: string[] = [];
private newWords: string[] = [];
Expand Down

0 comments on commit 5f863bd

Please sign in to comment.