mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
4 lines
126 B
JavaScript
4 lines
126 B
JavaScript
// sanitise str_to_sanitize
|
|
function sanitize_text(str_to_sanitize) {
|
|
return $("<span\>").text(str_to_sanitize).html()
|
|
};
|