xgo/stdlib/hex.go

13 lines
251 B
Go
Raw Normal View History

package stdlib
import (
"encoding/hex"
2019-12-20 22:40:38 +03:00
2019-12-30 00:38:51 +03:00
"github.com/d5/tengo/v2"
)
2019-12-20 22:40:38 +03:00
var hexModule = map[string]tengo.Object{
"encode": &tengo.UserFunction{Value: FuncAYRS(hex.EncodeToString)},
"decode": &tengo.UserFunction{Value: FuncASRYE(hex.DecodeString)},
}