(buffer, byte, i)
| 240 | } |
| 241 | |
| 242 | function indexOf(buffer, byte, i) { |
| 243 | i |= 0; |
| 244 | var length = buffer.length; |
| 245 | for (;;i++) { |
| 246 | if (i >= length) return -1; |
| 247 | if (buffer[i] === byte) return i; |
| 248 | } |
| 249 | } |
| 250 | |
| 251 | function parseOct(buffer, start, end) { |
| 252 | var val = 0; |
no outgoing calls
no test coverage detected