mirror of https://github.com/CIRCL/AIL-framework
5 lines
126 B
JavaScript
5 lines
126 B
JavaScript
|
// sanitise str_to_sanitize
|
||
|
function sanitize_text(str_to_sanitize) {
|
||
|
return $("<span\>").text(str_to_sanitize).html()
|
||
|
};
|