3.0.0 • Published 1 year ago

stringify-json-object v3.0.0

Weekly downloads
27
License
MIT
Repository
github
Last release
1 year ago

If I should maintain this repo, please ⭐️

DM me on Twitter if you have questions or suggestions.


Installation

yarn add stringify-json-object
npm install stringify-json-object
pnpm add stringify-json-object

Usage

The stringify function works like JSON.stringify:

import stringify from "stringify-json-object";

stringify(true); // 'true'
stringify(1); // '1'
stringify("foo"); // '"foo"'
stringify({ foo: "bar" }); // '{"foo":"bar"}'
stringify({ foo: "bar", missing: undefined }); // '{"foo":"bar"}'

The stringify function also accepts an options argument, to easily format the output:

import stringify from "stringify-json-object";

stringify({ foo: "bar" }, { pretty: true }); // '{\n  "foo": "bar"\n}"

Additionally, primitives resolve to typed string literals:

import stringify from "stringify-json-object";

stringify(true); // "true"
stringify(1); // "1"
stringify("foo"); // "\"foo\""
stringify({ foo: "bar" }); // string
  • autorepo: Autorepo abstracts away your dev dependencies, providing a single command to run all of your scripts.

MIT

Related Packages