Merge pull request #412 from delavara/patch-1

Update CUSTOM.md
master
Evgeny Poberezkin 2017-02-09 20:28:05 +00:00 committed by GitHub
commit af458d3460
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ Example. `constant` keyword from version 5 proposals (that is equivalent to `enu
```javascript
ajv.addKeyword('constant', { validate: function (schema, data) {
return typeof schema == 'object && schema !== null'
return typeof schema == 'object' && schema !== null
? deepEqual(schema, data)
: schema === data;
}, errors: false });