(src, dst, offset, length)
| 11467 | } |
| 11468 | |
| 11469 | function blitBuffer (src, dst, offset, length) { |
| 11470 | for (var i = 0; i < length; ++i) { |
| 11471 | if ((i + offset >= dst.length) || (i >= src.length)) break |
| 11472 | dst[i + offset] = src[i] |
| 11473 | } |
| 11474 | return i |
| 11475 | } |
| 11476 | |
| 11477 | function isnan (val) { |
| 11478 | return val !== val // eslint-disable-line no-self-compare |
no outgoing calls
no test coverage detected