conflag 0.1.1

A simple and powreful configuration language, extending JSON with declarative and functional language features.
Documentation
1
2
3
4
5
{
    any: (f, a) => reduce((state, v) => if(state, state, f(v)), a, false),
    contains: (a, v) => any((vv) => v == vv, a),
    eval: contains([1, 2, 3], 3),
}