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

Added object 'KEEP' function (#88)

* add unit tests for KEEP function

* added KEEP function

* added doc for KEYS function

* addded isEqualObjects function to objects tests
This commit is contained in:
3timeslazy
2018-10-09 23:13:00 +03:00
committed by Tim Voronov
parent ab63371892
commit 0bc4280d3f
4 changed files with 257 additions and 0 deletions

View File

@ -6,5 +6,6 @@ func NewLib() map[string]core.Function {
return map[string]core.Function{
"HAS": Has,
"KEYS": Keys,
"KEEP": Keep,
}
}