JSPM

validate.io-json

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 11
  • Score
    100M100P100Q38238F

Validates if a value is a parseable JSON string.

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

NPM version Build Status Coverage Status Dependencies

Validates if a value is a parseable JSON string.

Installation

$ npm install validate.io-json

For 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 true

Notes

  • validates that the input value is a string literal. For all other inputs, the method returns false.
  • validates that a string begins with either [ or { and ends with a corresponding ] or }, respectively. Hence, the method will return false for the following strings, despite JSON.parse accepting their input:
    • '<number>'; e.g., '5'
    • '<boolean>'; e.g., 'true'
    • 'null'
  • uses JSON.parse inside a try/catch. Hence, this method cannot be optimized by the compiler during runtime. Nevertheless, using this function is better than embedding a try/catch within a larger function which could be optimized in the absence of a try/catch.

Examples

var isJSON = require( 'validate.io-json' );

console.log( isJSON( '{"a":5}' ) );
// returns true

console.log( isJSON( '{a":5}' ) );
// returns false

To run the example code from the top-level application directory,

$ node ./examples/index.js

Tests

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 test

All 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-cov

Istanbul creates a ./reports/coverage directory. To access an HTML version of the report,

$ make view-cov

License

MIT license.

Copyright © 2015. Athan Reines.