Package Exports
- validate.io-json
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (validate.io-json) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
JSON
Validates if a value is a parseable JSON string.
Installation
$ npm install validate.io-jsonFor use in the browser, use browserify.
Usage
var isJSON = require( 'validate.io-json' );isJSON( value )
Validates if a value is a parseable JSON string.
var value = '{"a":5}';
var bool = isJSON( value );
// returns trueNotes
- 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.
Examples
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.jsTests
Unit
Unit 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.
Test Coverage
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-covLicense
Copyright
Copyright © 2015. Athan Reines.