0.1.21 (Beta)
- Adds
dc.evaluate()
anddc.tryEvaluate()
for evaluating the datacore expression language programmatically. - Adds postfix function calls to the datacore syntax. This allows you to chain functions:
lower("YES") => "YES".lower()
replace(lower("YES"), "e", a") => "YES".lower().replace("e", a")
Postfix syntax implicitly adds the callee object as the first argument.