Reverses the sanitization done by the sanitizeInput function.
sanitizeInput
Usage:
const ret = unsanitizeInput('<div>hello world</div>');console.log(ret); Copy
const ret = unsanitizeInput('<div>hello world</div>');console.log(ret);
Output:
<div>hello world</div> Copy
<div>hello world</div>
The input string to unsanitize
The unsanitized input string
Reverses the sanitization done by the
sanitizeInput
function.Usage:
Output: