pub mod json;
pub mod json_text;
mod ndjson;
pub use json::Json;
pub use ndjson::{Bundler, BundlerBuilder, Unbundler, UnbundlerBuilder};
pub fn dots_to_slashes(str: &str) -> String {
"/".to_string() + &str.split('.').collect::<Vec<&str>>().join("/")
}