D | header.js | 16 constructor (data, off, ex, gex) { argument 39 this.decode(data, off || 0, ex, gex) 44 decode (buf, off, ex, gex) { argument 45 if (!off) 46 off = 0 48 if (!buf || !(buf.length >= off + 512)) 51 this.path = decString(buf, off, 100) 52 this.mode = decNumber(buf, off + 100, 8) 53 this.uid = decNumber(buf, off + 108, 8) 54 this.gid = decNumber(buf, off + 116, 8) [all …]
|