0.4.0 • Published 5 years ago

@kinday/njv v0.4.0

Weekly downloads
40
License
-
Repository
-
Last release
5 years ago

njv

⚠️ Work in progress! Nothing to see here! ⚠️

Docs

Import:

import validate from 'njv'

Interface:

const schema = { type: 'number' }

console.log(validate(schema, 5))
// { valid: true, errors: [] }

console.log(validate(schema, 'invalid'))
// {
//   valid: false,
//   errors: [
//     {
//       absoluteInstancePath: [],
//       absoluteSchemaPath: ["type"],
//       context: undefined,
//       validator: 'type',
//       validatorValue: 'number',
//     }
//   ]
// }
0.4.0

5 years ago

0.3.1

5 years ago

0.3.0

5 years ago

0.2.2

5 years ago

0.2.1

5 years ago

0.2.0

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago