(buf, start, end)
| 922 | return ret; |
| 923 | } |
| 924 | function latin1Slice(buf, start, end) { |
| 925 | var ret = ''; |
| 926 | end = Math.min(buf.length, end); |
| 927 | for (var i = start; i < end; ++i) { |
| 928 | ret += String.fromCharCode(buf[i]); |
| 929 | } |
| 930 | return ret; |
| 931 | } |
| 932 | function hexSlice(buf, start, end) { |
| 933 | var len = buf.length; |
| 934 | if (!start || start < 0) start = 0; |
no outgoing calls
no test coverage detected
searching dependent graphs…