Anonymous View
1.1.1 • Published 1 year ago

@plist/openstep.parse v1.1.1

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

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

Usage

import { parse } from '@plist/openstep.parse';

const dict = parse(`{ hello = world; }`);
// => { hello: "world" }