mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-07-14 02:36:27 +00:00
Update to tengo v2 (#976)
This commit is contained in:
34
vendor/github.com/d5/tengo/v2/stdlib/base64.go
generated
vendored
Normal file
34
vendor/github.com/d5/tengo/v2/stdlib/base64.go
generated
vendored
Normal file
@ -0,0 +1,34 @@
|
||||
package stdlib
|
||||
|
||||
import (
|
||||
"encoding/base64"
|
||||
|
||||
"github.com/d5/tengo/v2"
|
||||
)
|
||||
|
||||
var base64Module = map[string]tengo.Object{
|
||||
"encode": &tengo.UserFunction{
|
||||
Value: FuncAYRS(base64.StdEncoding.EncodeToString),
|
||||
},
|
||||
"decode": &tengo.UserFunction{
|
||||
Value: FuncASRYE(base64.StdEncoding.DecodeString),
|
||||
},
|
||||
"raw_encode": &tengo.UserFunction{
|
||||
Value: FuncAYRS(base64.RawStdEncoding.EncodeToString),
|
||||
},
|
||||
"raw_decode": &tengo.UserFunction{
|
||||
Value: FuncASRYE(base64.RawStdEncoding.DecodeString),
|
||||
},
|
||||
"url_encode": &tengo.UserFunction{
|
||||
Value: FuncAYRS(base64.URLEncoding.EncodeToString),
|
||||
},
|
||||
"url_decode": &tengo.UserFunction{
|
||||
Value: FuncASRYE(base64.URLEncoding.DecodeString),
|
||||
},
|
||||
"raw_url_encode": &tengo.UserFunction{
|
||||
Value: FuncAYRS(base64.RawURLEncoding.EncodeToString),
|
||||
},
|
||||
"raw_url_decode": &tengo.UserFunction{
|
||||
Value: FuncASRYE(base64.RawURLEncoding.DecodeString),
|
||||
},
|
||||
}
|
Reference in New Issue
Block a user