4b78e54304
Co-authored-by: Ivan Ortega <ivanortegaalba@gmail.com>
10 lines
136 B
Go
10 lines
136 B
Go
package utils
|
|
|
|
func IsArray(value interface{}) bool {
|
|
if value == nil {
|
|
return false
|
|
}
|
|
_, ok := value.([]interface{})
|
|
return ok
|
|
}
|