(src, dst, offset, length)
| 3634 | } |
| 3635 | |
| 3636 | function blitBuffer (src, dst, offset, length) { |
| 3637 | for (var i = 0; i < length; ++i) { |
| 3638 | if ((i + offset >= dst.length) || (i >= src.length)) break |
| 3639 | dst[i + offset] = src[i]; |
| 3640 | } |
| 3641 | return i |
| 3642 | } |
| 3643 | |
| 3644 | function isnan (val) { |
| 3645 | return val !== val // eslint-disable-line no-self-compare |
no outgoing calls
no test coverage detected