1.1.1 • Published 1 year ago
@plist/openstep.parse v1.1.1
About
This library adapts test cases from nextstep-plist.
Installation
@plist/openstep.parse is available on npm, you can install it with either npm or yarn:
npm install @plist/openstep.parse
# or:
yarn install @plist/openstep.parseUsage
import { parse } from '@plist/openstep.parse';
const dict = parse(`{ hello = world; }`);
// => { hello: "world" }
