(src, dst, offset, length)
| 2371 | } |
| 2372 | |
| 2373 | function blitBuffer (src, dst, offset, length) { |
| 2374 | for (var i = 0; i < length; ++i) { |
| 2375 | if ((i + offset >= dst.length) || (i >= src.length)) break |
| 2376 | dst[i + offset] = src[i] |
| 2377 | } |
| 2378 | return i |
| 2379 | } |
| 2380 | |
| 2381 | function isnan (val) { |
| 2382 | return val !== val // eslint-disable-line no-self-compare |
no outgoing calls
no test coverage detected