[][src]Function search_json::flat_json

pub fn flat_json(js: &str) -> Vec<String>

flat deep nested json

Examples

   let path= "./test.json";
   let js = read_file_as_txt(&path);
   let res=flat_json(&js);
    dbg!(res);