node-bplist-parser icon indicating copy to clipboard operation
node-bplist-parser copied to clipboard

Support both bplist and xml plist

Open hugovaldeolmillos opened this issue 3 years ago • 1 comments

hugovaldeolmillos avatar Oct 07 '21 16:10 hugovaldeolmillos

you can read file as buffer, then check

const bPlistMagic = Buffer.from('bplist')
const content = fs.readFileSync...
const isBinaryPlist = content.length > bPlistMagic.length && bPlistMagic.compare(content, 0, bPlistMagic.length) === 0

0x0a0d avatar Nov 09 '21 23:11 0x0a0d