1.0.0 • Published 3 years ago

@plist/binary.parse v1.0.0

Weekly downloads
-
License
BSD-3-Clause-Clea...
Repository
github
Last release
3 years ago

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.parse

Usage

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" }