mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
13 lines
333 B
JavaScript
13 lines
333 B
JavaScript
import fs from 'node:fs'
|
|
import XrefParser from '../app/js/XrefParser.js'
|
|
|
|
const pdfPath = process.argv[2]
|
|
|
|
async function main() {
|
|
const size = (await fs.promises.stat(pdfPath)).size
|
|
const { xRefEntries } = await XrefParser.parseXrefTable(pdfPath, size)
|
|
console.log('Xref entries', xRefEntries)
|
|
}
|
|
|
|
main().catch(console.error)
|