jsrmx/
processor.rs

1/// Process JSON objects
2pub mod json;
3/// Encode and decode nested string-escaped JSON objects
4pub mod json_text;
5/// Process newline-delimited lists of JSON objects
6mod ndjson;
7
8pub use json::Json;
9pub use ndjson::{Bundler, BundlerBuilder, Unbundler, UnbundlerBuilder};
10
11pub fn dots_to_slashes(str: &str) -> String {
12    "/".to_string() + &str.split('.').collect::<Vec<&str>>().join("/")
13}