Validates if a value is a parseable JSON string.
$ npm install validate.io-jsonFor use in the browser, use browserify.
var isJSON = require( 'validate.io-json' );Validates if a value is a parseable JSON string.
var value = '{"a":5}';
var bool = isJSON( value );
// returns true- validates that the input
valueis astringliteral. For all other inputs, the method returnsfalse. - validates that a
stringbegins with either[or{and ends with a corresponding]or}, respectively. Hence, the method will returnfalsefor the followingstrings, despiteJSON.parseaccepting their input:'<number>'; e.g.,'5''<boolean>'; e.g.,'true''null'
- uses
JSON.parseinside atry/catch. Hence, this method cannot be optimized by the compiler during runtime. Nevertheless, using thisfunctionis better than embedding atry/catchwithin a largerfunctionwhich could be optimized in the absence of atry/catch.
var isJSON = require( 'validate.io-json' );
console.log( isJSON( '{"a":5}' ) );
// returns true
console.log( isJSON( '{a":5}' ) );
// returns falseTo run the example code from the top-level application directory,
$ node ./examples/index.jsUnit tests use the Mocha test framework with Chai assertions. To run the tests, execute the following command in the top-level application directory:
$ make testAll new feature development should have corresponding unit tests to validate correct functionality.
This repository uses Istanbul as its code coverage tool. To generate a test coverage report, execute the following command in the top-level application directory:
$ make test-covIstanbul creates a ./reports/coverage directory. To access an HTML version of the report,
$ make view-covCopyright © 2015. Athan Reines.