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

Feature/#10 zip (#113)

* added prototype of ZIP function

* add unit test for ZIP function

* change comment for ZIP function

* added some new tests

* small change in unit tests

* added ZIP function
This commit is contained in:
3timeslazy
2018-10-13 21:29:10 +03:00
committed by Tim Voronov
parent 446ce3ead5
commit 5d0d9ec537
3 changed files with 217 additions and 0 deletions

View File

@ -8,5 +8,6 @@ func NewLib() map[string]core.Function {
"KEYS": Keys,
"KEEP": Keep,
"MERGE": Merge,
"ZIP": Zip,
}
}