Я использую MessageFormat.format в JavaScript, и если я передаю строку test's, я возвращаюсь как the test's
test's
the test's
MessageFormat.format(`this is {myStr}`, {"myStr":"test's"})
Как получить окончательную строку как this is test's
this is test's