(value, etc)
| 149 | if (line.length) this.push(line); |
| 150 | } |
| 151 | push(value, etc) { |
| 152 | if (etc) throw new Error("unexpected"); |
| 153 | if (undefined === value) |
| 154 | return; |
| 155 | super.push(value); |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | const hex = "0123456789ABCDEF"; |
no outgoing calls
no test coverage detected