Skip to content

Commit

Permalink
Add missing semicolon in htmlUnescapes
Browse files Browse the repository at this point in the history
  • Loading branch information
tomekzaw committed Aug 2, 2024
1 parent 38ad7b3 commit 3debfc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const htmlUnescapes = {
'"': '"',
''': "'",
'`': '`',
'&#32': ' ',
' ': ' ',
};

const reEscapedHtml = /&(?:amp|lt|gt|quot|#(x27|x60|32));/g;
Expand Down

0 comments on commit 3debfc6

Please sign in to comment.