1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! # serde_json_lodash
//!
//! A library uses [lodash.js](https://lodash.com/docs) style functions to handle [serde_json::Value](https://docs.serde.rs/serde_json/value/enum.Value.html)

#![deny(missing_docs)]
#![deny(warnings)]

mod lib {
    pub use serde_json::{Value, json};
}

mod array;
mod collection;
mod date;
mod function;
mod lang;
mod math;
mod number;
mod object;
mod seq;
mod string;
mod util;
mod properties;
mod methods;

pub use array::*;
pub use collection::*;
pub use date::*;
pub use function::*;
pub use lang::*;
pub use math::*;
pub use number::*;
pub use object::*;
pub use seq::*;
pub use string::*;
pub use util::*;
pub use properties::*;
pub use methods::*;