mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
0bc4280d3f
* add unit tests for KEEP function * added KEEP function * added doc for KEYS function * addded isEqualObjects function to objects tests
12 lines
200 B
Go
12 lines
200 B
Go
package objects
|
|
|
|
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,
|
|
}
|
|
}
|