(self, index, parentindex, callback)
| 946 | } |
| 947 | |
| 948 | function updDocumentParent(self, index, parentindex, callback) { |
| 949 | var offset = offsetDocument(self, index); |
| 950 | var buf = U.createBufferSize(4); |
| 951 | buf.writeUInt32LE(parentindex); |
| 952 | Fs.write(self.fd, buf, 0, buf.length, offset + 11, callback); |
| 953 | } |
| 954 | |
| 955 | function updPageMeta(self, index, fn) { |
| 956 | var offset = offsetPage(self, index); |
no test coverage detected