(name, missing = 0)
| 55 | } |
| 56 | |
| 57 | getInt(name, missing = 0) { |
| 58 | if (!this.has(name)) { |
| 59 | return missing; |
| 60 | } |
| 61 | return parseInt(this.getString(name), 10); |
| 62 | } |
| 63 | |
| 64 | getBool(name, missing = false) { |
| 65 | if (!this.has(name)) { |
no test coverage detected