rulemorph 0.3.1

YAML-based declarative data transformation engine for CSV/JSON to JSON
Documentation
1
2
3
4
5
6
7
8
9
use super::*;

mod pad;
mod replace;
mod split;

pub(in crate::transform::operators) use pad::eval_pad;
pub(in crate::transform::operators) use replace::eval_replace;
pub(in crate::transform::operators) use split::eval_split;