const require_unescape = require("../../string/unescape.js"); const require_toString = require("../util/toString.js"); //#region src/compat/string/unescape.ts /** * Converts the HTML entities `&`, `<`, `>`, `"`, and `'` in `str` to their corresponding characters. * It is the inverse of `escape`. * * @param {string} str The string to unescape. * @returns {string} Returns the unescaped string. * * @example * unescape('This is a <div> element.'); // returns 'This is a