1.1.0 • Published 2 years ago
@plist/binary.parse v1.1.0
About
This library adapts code, logic and test cases from node-bplist-parser.
Installation
@plist/binary.parse is available on npm, you can install it with either npm or yarn:
npm install @plist/binary.parse
# or:
yarn install @plist/binary.parseUsage
import { parse } from '@plist/binary.parse';
const { buffer } = new Uint8Array(
readFileSync(path.join(TEST_FILE_PATH, 'data_types', 'dict.plist'))
);
const dict = parse(buffer);
// => { hello: "world", whats: "up" }
