(arg interface{})
| 1835 | } |
| 1836 | |
| 1837 | func isFunction(arg interface{}) bool { |
| 1838 | if arg == nil { |
| 1839 | return false |
| 1840 | } |
| 1841 | return reflect.TypeOf(arg).Kind() == reflect.Func |
| 1842 | } |
| 1843 | |
| 1844 | var spewConfig = spew.ConfigState{ |
| 1845 | Indent: " ", |
no outgoing calls
no test coverage detected
searching dependent graphs…