[skip ci] ESLint

This commit is contained in:
Cohee
2024-04-28 16:58:28 +03:00
parent a73cb9ad3d
commit fb1b327f9a
3 changed files with 5 additions and 5 deletions

View File

@ -31,7 +31,7 @@ export const debounce_timeout = {
relaxed: 1000,
/** [5 sec] For delayed tasks, like auto-saving or completing batch operations that need a significant pause. */
extended: 5000,
}
};
export function escapeHtml(str) {
return String(str).replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/"/g, '&quot;');