(view, offset, string)
| 1586 | } |
| 1587 | |
| 1588 | function writeUTFBytes(view, offset, string) { |
| 1589 | var lng = string.length; |
| 1590 | for (var i = 0; i < lng; i++) { |
| 1591 | view.setUint8(offset + i, string.charCodeAt(i)); |
| 1592 | } |
| 1593 | } |
| 1594 | |
| 1595 | function convertoFloat32ToInt16(buffer) { |
| 1596 | var l = buffer.length; |
no outgoing calls
no test coverage detected