Reuturn the validation results as an array.
Deepen a dot-notated nested object into a real nested object.
Object with dot-notated nested properties
const dotNotated = { "nested.prop": "value" };
const deepened = this.deepen(dotNotated);
console.log(deepened); // { 'nested': { 'prop': 'value' }}
See if validation result has any validation errors.
Return the validation results as mapped validation results.
Return final values that have been stored within this validation result. This can be used for retrieving all values that have passed validations and been sanitized.
Merge multiple validation error results into a single one.
An array of validation error results
Generated using TypeDoc
Validation result set.