(src, dst, offset, length)
| 2067 | } |
| 2068 | |
| 2069 | function blitBuffer (src, dst, offset, length) { |
| 2070 | for (var i = 0; i < length; ++i) { |
| 2071 | if ((i + offset >= dst.length) || (i >= src.length)) break |
| 2072 | dst[i + offset] = src[i] |
| 2073 | } |
| 2074 | return i |
| 2075 | } |
| 2076 | |
| 2077 | function isnan (val) { |
| 2078 | return val !== val // eslint-disable-line no-self-compare |
no outgoing calls
no test coverage detected