Captain Emo
Captain Emo
in `tests/json/objects.js` change ``` var schema = { type: 'object', properties: { name: { type: 'string' } } }; ``` to ``` var schema = { type: 'object', properties: {...
``` var amanda = require('amanda') var person = { type: 'object', properties: { age: { type: 'number', minimum: 1, } } } amanda({age: -1}, person, function(error){ console.log(error) }) ``` this...
First things first, thanks for a great library. I have been bothered with 'Phantom rendering' problem with DevTools since 6.0.0 release. This package is really a savior for me! With...