TypeScript library for serializing OpenStep/NEXTStep Property Lists, in browser and node.js.
npm install @plist/openstep.parse
TypeScript library for parsing OpenStep/NEXTStep Property Lists, in browser and node.js.
This library adapts test cases from nextstep-plist.
@plist/openstep.parse is available on npm, you can install it with either npm or yarn:
``sh`
npm install @plist/openstep.parseor:
yarn install @plist/openstep.parse
`ts
import { parse } from '@plist/openstep.parse';
const dict = parse({ hello = world; });``
// => { hello: "world" }