(src, dst, offset, length)
| 1753 | } |
| 1754 | |
| 1755 | function blitBuffer (src, dst, offset, length) { |
| 1756 | for (var i = 0; i < length; i++) { |
| 1757 | if ((i + offset >= dst.length) || (i >= src.length)) break |
| 1758 | dst[i + offset] = src[i] |
| 1759 | } |
| 1760 | return i |
| 1761 | } |
| 1762 | |
| 1763 | function decodeUtf8Char (str) { |
| 1764 | try { |
no outgoing calls
no test coverage detected