This repository has been archived on 2021-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
ui/qml/utils.js

11 lines
252 B
JavaScript
Raw Normal View History

2019-01-30 19:46:22 +00:00
.pragma library
function htmlEscaped(str) {
str = str.replace(/&/g, "&");
str = str.replace(/</g, "&lt;");
str = str.replace(/>/g, "&gt;");
str = str.replace(/"/g, "&quot;");
str = str.replace(/'/g, "&apos;");
return str
}