(b, n, m)
| 557 | Buffer.prototype._isBuffer = true |
| 558 | |
| 559 | function swap (b, n, m) { |
| 560 | const i = b[n] |
| 561 | b[n] = b[m] |
| 562 | b[m] = i |
| 563 | } |
| 564 | |
| 565 | Buffer.prototype.swap16 = function swap16 () { |
| 566 | const len = this.length |
no outgoing calls
no test coverage detected
searching dependent graphs…