aicra/response/arguments.go

8 lines
146 B
Go
Raw Normal View History

2018-07-08 22:15:29 +00:00
package response
2018-06-03 12:48:10 +00:00
// Checks whether a key exists in the arguments
func (i Arguments) Has(key string) bool {
_, exists := i[key]
return exists
}