2018-10-07 23:58:22 +02:00
|
|
|
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,
|
2018-10-09 22:13:00 +02:00
|
|
|
"KEEP": Keep,
|
2018-10-07 23:58:22 +02:00
|
|
|
}
|
|
|
|
}
|