mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-25 02:00:10 +02:00
[clsi] try to emit the start of the xref table GitOrigin-RevId: 6d8348a349572cc997ac5924664428228c00fed1
13 lines
343 B
JavaScript
13 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)
|