8 lines
147 B
Go
8 lines
147 B
Go
|
package implement
|
||
|
|
||
|
// Checks whether a key exists in the arguments
|
||
|
func (i Arguments) Has(key string) bool {
|
||
|
_, exists := i[key]
|
||
|
return exists
|
||
|
}
|