json-dup-key-validator
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/json-dup-key-validator package

1.0.3 • Public • Published

json-dup-key-validator NPM version Build Status

A json validator that has an option to check for duplicated keys

Install

npm install json-dup-key-validator

Usage

var jsonValidator = require('json-dup-key-validator');

// Returns error or undefined if json is valid
jsonValidator.validate(jsonString, allowDuplicatedKeys);

// Returns the object and throws error if any
jsonValidator.parse(jsonString, allowDuplicatedKeys);

API

.validate(jsonString, allowDuplicatedKeys)

Validates a json string and returns error if any, undefined if the json string is valid.

jsonString

Type: String

JSON string to parse

allowDuplicatedKeys

Type: Boolean

Default: false

Whether duplicated keys are allowed in an object or not

.parse(jsonString, allowDuplicatedKeys)

Parses a json string and returns the parsed result. Throws error if the json string is not valid.

jsonString

Type: String

JSON string to parse

allowDuplicatedKeys

Type: Boolean

Default: false

Whether duplicated keys are allowed in an object or not

Package Sidebar

Install

npm i json-dup-key-validator

Weekly Downloads

182,888

Version

1.0.3

License

MIT

Unpacked Size

20.7 kB

Total Files

22

Last publish

Collaborators

  • jackyjieliu