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

Package detail

@plist/openstep.serialize

mat-sz10.9kBSD-3-Clause-Clear1.1.1TypeScript support: included

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

serialize, plist, propertylist, openstep, nextstep, typescript, browser, node, apple, macos, ios

readme

@plist/openstep.serialize

TypeScript library for serializing 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.serialize is available on npm, you can install it with either npm or yarn:

npm install @plist/openstep.serialize
# or:
yarn install @plist/openstep.serialize

Usage

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

const openstep = serialize({
  dictionary: {
    hello: 'world',
  },
});
// => { hello = world; }