mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
97624d0c6c
[clsi] try to emit the start of the xref table GitOrigin-RevId: 6d8348a349572cc997ac5924664428228c00fed1
12 lines
343 B
JavaScript
12 lines
343 B
JavaScript
const fs = require('fs')
|
|
const { parseXrefTable } = require('../app/lib/pdfjs/parseXrefTable')
|
|
|
|
const pdfPath = process.argv[2]
|
|
|
|
async function main() {
|
|
const size = (await fs.promises.stat(pdfPath)).size
|
|
const { xRefEntries } = await parseXrefTable(pdfPath, size)
|
|
console.log('Xref entries', xRefEntries)
|
|
}
|
|
|
|
main().catch(console.error)
|