Socket
Socket
Sign inDemoInstall

jsonify

Package Overview
Dependencies
0
Maintainers
2
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

jsonify

JSON without touching any globals


Version published
Maintainers
2
Weekly downloads
6,716,843
decreased by-12.21%

Weekly downloads

Readme

Source

jsonify Version Badge

github actions coverage License Downloads

npm badge

This module provides Douglas Crockford's JSON implementation without modifying any globals.

stringify and parse are merely exported without respect to whether or not a global JSON object exists.

build status

methods

var json = require('jsonify');

json.parse(source, reviver)

Return a new javascript object from a parse of the source string.

If a reviver function is specified, walk the structure passing each name/value pair to reviver.call(parent, key, value) to transform the value before parsing it.

json.stringify(value, replacer, space)

Return a string representation for value.

If replacer is specified, walk the structure passing each name/value pair to replacer.call(parent, key, value) to transform the value before stringifying it.

If space is a number, indent the result by that many spaces. If space is a string, use space as the indentation.

install

With npm do:

npm install jsonify

To use this module in the browser, check out browserify.

license

public domain

Keywords

FAQs

Last updated on 12 Oct 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc