Socket
Socket
Sign inDemoInstall

is-valid-json

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    is-valid-json

A small tool to check if a Javscript literal/object is JSON or not


Version published
Maintainers
1
Install size
3.79 kB
Created

Readme

Source

is-valid-json


A small tool to check if a Javscript literal/object is JSON or not

Installation (as node package)

npm install is-valid-json --save

Version

1.0.2

License

MIT

Usage

var isJSON = require('is-valid-json');

// "obj" can be {},{"foo":"bar"},2,"2",true,false,null,undefined, etc.
var obj = "any JS literal here";   

if( isJSON(obj) ){

  // Valid JSON, do something
}
else{

  // not a valid JSON, show friendly error message
}

Keywords

FAQs

Last updated on 21 Jul 2016

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