8 lines
129 B
Go
8 lines
129 B
Go
package main
|
|
|
|
import "net/url"
|
|
|
|
func checkEmpty(f url.Values, path string) bool {
|
|
return !f.Has(path) || f.Get(path) == ""
|
|
}
|