diff --git a/CUSTOM.md b/CUSTOM.md index e5f9cf5..97c37f4 100644 --- a/CUSTOM.md +++ b/CUSTOM.md @@ -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 });