From d0b590f78ffa8b3fa6cc5f6cc87b94b4a4b6c471 Mon Sep 17 00:00:00 2001 From: Justin Dearing Date: Fri, 20 Oct 2023 20:15:53 -0400 Subject: [PATCH] fix build --- replacer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/replacer.js b/replacer.js index 9c85dd2..920afb1 100644 --- a/replacer.js +++ b/replacer.js @@ -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, '--');