From 5c6626b37ef2b1c90d13483fe404762199ec826c Mon Sep 17 00:00:00 2001 From: dudaodong Date: Tue, 28 Dec 2021 11:00:43 +0800 Subject: [PATCH] fmt: go fmt for function.go --- function/function.go | 1 + 1 file changed, 1 insertion(+) diff --git a/function/function.go b/function/function.go index f013df9..609792f 100644 --- a/function/function.go +++ b/function/function.go @@ -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{}