Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
zippy1981 committed Oct 21, 2023
1 parent 8c0668c commit d0b590f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion replacer.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
function cleanseString(strInput) {
return strInput
.replace(/[\u201C\u201D]/g, '"')
.replace(/[\u2018\u2019]/g, "'")
.replace(/[\u2018\u2019]/g, '\'')
.replace(/\u2026/g, '...')
.replace(/\u2013/g, '-')
.replace(/\u2014/g, '--');
Expand Down

0 comments on commit d0b590f

Please sign in to comment.