Name | HTML attribute | Type | Description |
---|---|---|---|
message | data-fv-base64___message | String | The error message |
// You might need to change the importing pathimport base64 from 'formvalidation/dist/es6/validators/base64';const result = base64().validate({value: ...,options: {message: ...,},});/*result is an object of{valid: true or false,message: The error message}*/