1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-07-05 00:49:00 +02:00

Feature/#10 values (#128)

* added VALUES function
* updated object.Compare
This commit is contained in:
3timeslazy
2018-10-23 01:24:53 +03:00
committed by Tim Voronov
parent e9e33263f3
commit ebea64da37
6 changed files with 361 additions and 14 deletions

View File

@ -4,10 +4,11 @@ import "github.com/MontFerret/ferret/pkg/runtime/core"
func NewLib() map[string]core.Function {
return map[string]core.Function{
"HAS": Has,
"KEYS": Keys,
"KEEP": Keep,
"MERGE": Merge,
"ZIP": Zip,
"HAS": Has,
"KEYS": Keys,
"KEEP": Keep,
"MERGE": Merge,
"ZIP": Zip,
"VALUES": Values,
}
}