diff --git a/unescape.js b/unescape.js index abf1c0b26..55f053169 100644 --- a/unescape.js +++ b/unescape.js @@ -2,11 +2,11 @@ import toString from './toString.js' /** Used to map HTML entities to characters. */ const htmlUnescapes = { - '&: '&', - '<: '<', - '>: '>', - '": '"', - '': "'" + '&': '&', + '<': '<', + '>': '>', + '"': '"', + ''': "'" } /** Used to match HTML entities and HTML characters. */