mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 12:28:42 +00:00
5 lines
101 B
Rust
5 lines
101 B
Rust
#[napi]
|
|
pub fn html_sanitize(input: String) -> String {
|
|
v_htmlescape::escape(&input).to_string()
|
|
}
|