Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@plist/openstep.parse

mat-sz35.5kBSD-3-Clause-Clear1.1.1TypeScript support: included

TypeScript library for serializing OpenStep/NEXTStep Property Lists, in browser and node.js.

parse, parser, plist, propertylist, openstep, nextstep, typescript, browser, node, apple, macos, ios

readme

@plist/openstep.parse

TypeScript library for parsing OpenStep/NEXTStep Property Lists, in browser and node.js.

workflow npm npm NPM

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