rune/doc/build/
js.rs

1use crate::alloc::{self, String};
2
3/// Encode `string` as part of a quoted javascript string.
4pub(crate) fn encode_quoted(out: &mut String, string: &str) -> alloc::Result<()> {
5    for c in string.chars() {
6        let s = match c {
7            '\\' => "\\\\",
8            '\"' => "\\\"",
9            c => {
10                out.try_push(c)?;
11                continue;
12            }
13        };
14
15        out.try_push_str(s)?;
16    }
17
18    Ok(())
19}