(buf)
| 10 | const assert = require('assert'); |
| 11 | |
| 12 | function isZeroFilled(buf) { |
| 13 | for (let n = 0; n < buf.length; n++) |
| 14 | if (buf[n] > 0) return false; |
| 15 | return true; |
| 16 | } |
| 17 | |
| 18 | // This can be somewhat unreliable because the |
| 19 | // allocated memory might just already happen to |
no outgoing calls
no test coverage detected
searching dependent graphs…