1.0.2 • Published 2 years ago

json-duplicate-validator v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

json-duplicate-validator

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

Install

npm install json-duplicate-validator

Usage

var jsonHandler = require('json-duplicate-validator');

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

// Returns the object and handle if duplicate key
jsonHandler.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

jsonString

Type: String

JSON string to parse

allowDuplicatedKeys

Type: Boolean

Default: false

Whether duplicated keys are allowed in an object or not