getLimit gets the take as a string
(value string)
| 141 | |
| 142 | // getLimit gets the take as a string |
| 143 | func (input *request) getInt(value string) int { |
| 144 | val, _ := strconv.Atoi(value) |
| 145 | return val |
| 146 | } |
| 147 | |
| 148 | func (input *request) isDigits(value string) bool { |
| 149 | for _, c := range value { |
no outgoing calls
no test coverage detected