Merge pull request #8847 from overleaf/jpa-emit-start-of-xref-table

[clsi] try to emit the start of the xref table

GitOrigin-RevId: 6d8348a349572cc997ac5924664428228c00fed1
This commit is contained in:
Jakob Ackermann
2022-07-15 09:03:40 +01:00
committed by Copybot
parent 2173821121
commit 97624d0c6c
30 changed files with 3278 additions and 3189 deletions

View File

@@ -5,7 +5,7 @@ const pdfPath = process.argv[2]
async function main() {
const size = (await fs.promises.stat(pdfPath)).size
const xRefEntries = await parseXrefTable(pdfPath, size)
const { xRefEntries } = await parseXrefTable(pdfPath, size)
console.log('Xref entries', xRefEntries)
}