(string, offset, length, encoding)
| 277 | |
| 278 | |
| 279 | function testBufs(string, offset, length, encoding) { |
| 280 | bufReset(); |
| 281 | buf1.fill.apply(buf1, arguments); |
| 282 | // Swap bytes on BE archs for ucs2 encoding. |
| 283 | assert.deepStrictEqual(buf1.fill.apply(buf1, arguments), |
| 284 | writeToFill.apply(null, arguments)); |
| 285 | } |
| 286 |
no test coverage detected
searching dependent graphs…