govalidator
govalidator copied to clipboard
[Go] Package of validators and sanitizers for strings, numerics, slices and structs
### Feature Request | Q | A |------------ | ------ | New Feature | yes | RFC | yes/no | BC Break | yes/no #### Summary Hi There ! I...
### Feature Request | Q | A |------------ | ------ | New Feature | yes | RFC | yes/no | BC Break | yes/no #### Summary need a function that...
| Q | A |-------------- | ------ | Documentation | yes/no | Bugfix | yes/no | BC Break | yes/no | New Feature | yes/no | RFC | yes/no |...
#458 Hi I just correct the mistake and add a couple of test hope it works well.
Fix Readme multiply 1 by 3 result in 3, which is documented as 1 in the example line 315 | Q | A |-------------- | ------ | Documentation | yes...
Hi everyone: A struct defined like this: ```go type Input struct { Keyword string `valid:"stringlength(3|64)"` } ``` What I expect is: ``` Keyword == "" --> valid Keyword == "e"...
solve issue #458
package main import ( "fmt" "github.com/asaskevich/govalidator" ) func main() { fmt.Println(govalidator.IsDataURI("http://majesticraft.com/deedee/ke/fdee/purchase%order.doc")) fmt.Println(govalidator.IsURL("http://majesticraft.com/deedee/ke/fdee/purchase%order.doc")) } output: false false
| Q | A |-------------- | ------ | Documentation | yes/no | Bugfix | yes/no | BC Break | yes/no | New Feature | yes/no | RFC | yes/no |...
### BC Break Report #### Summary Validation of a pointer to a variable of type bool now checks the value of the variable, not the pointer. Error of compatibility has....