mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-14 02:57:52 +08:00
8 lines
108 B
Go
8 lines
108 B
Go
package testutil
|
|
|
|
func Recover(f func()) (r interface{}) {
|
|
defer func() { r = recover() }()
|
|
f()
|
|
return
|
|
}
|