Package Exports
- @plist/binary.serialize
- @plist/binary.serialize/lib/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@plist/binary.serialize) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@plist/binary.serialize
TypeScript library for serializing binary Property Lists, in browser and node.js.
About
This library adapts code, logic and test cases from node-bplist-creator.
Installation
@plist/binary.serialize is available on npm, you can install it with either npm or yarn:
npm install @plist/binary.serialize
# or:
yarn install @plist/binary.serialize
Usage
import { serialize } from '@plist/binary.serialize';
const binary = serialize({
dictionary: {
hello: 'world',
},
});
// => ArrayBuffer