mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 08:40:29 +00:00
12 lines
214 B
Go
12 lines
214 B
Go
package stdlib
|
|
|
|
import "github.com/d5/tengo/objects"
|
|
|
|
func wrapError(err error) objects.Object {
|
|
if err == nil {
|
|
return objects.TrueValue
|
|
}
|
|
|
|
return &objects.Error{Value: &objects.String{Value: err.Error()}}
|
|
}
|