fmt: go fmt for function.go

This commit is contained in:
dudaodong
2021-12-28 11:00:43 +08:00
parent 16b5101600
commit 5c6626b37e

View File

@@ -35,6 +35,7 @@ func Before(n int, fn interface{}) func(args ...interface{}) []reflect.Value {
return res
}
}
// Fn is for curry function which is func(...interface{}) interface{}
type Fn func(...interface{}) interface{}