Update vendor

This commit is contained in:
Wim
2019-10-27 01:35:37 +02:00
parent 45bf1fd63a
commit 7c97074a01
32 changed files with 4150 additions and 1604 deletions

11
vendor/github.com/d5/tengo/stdlib/hex.go generated vendored Normal file
View File

@@ -0,0 +1,11 @@
package stdlib
import (
"encoding/hex"
"github.com/d5/tengo/objects"
)
var hexModule = map[string]objects.Object{
"encode": &objects.UserFunction{Value: FuncAYRS(hex.EncodeToString)},
"decode": &objects.UserFunction{Value: FuncASRYE(hex.DecodeString)},
}