(arg interface{})
| 1954 | } |
| 1955 | |
| 1956 | func isFunction(arg interface{}) bool { |
| 1957 | if arg == nil { |
| 1958 | return false |
| 1959 | } |
| 1960 | return reflect.TypeOf(arg).Kind() == reflect.Func |
| 1961 | } |
| 1962 | |
| 1963 | var spewConfig = spew.ConfigState{ |
| 1964 | Indent: " ", |
no outgoing calls
no test coverage detected
searching dependent graphs…