(buffer)
| 59 | } |
| 60 | |
| 61 | function buf2hex(buffer) { |
| 62 | return Array.prototype.map.call(new Uint8Array(buffer), x => ('00' + x.toString(16)).slice(-2)).join(''); |
| 63 | } |
| 64 | |
| 65 | // Simplified version of the similarly named python module. |
| 66 | var Struct = (function () { |