bluemonday icon indicating copy to clipboard operation
bluemonday copied to clipboard

nit: func stringInSlice should use EqualsFold

Open riking opened this issue 5 years ago • 0 comments

https://staticcheck.io/docs/checks#SA6005

In file sanitize.go: if strings.ToLower(straw) == strings.ToLower(needle) { should be strings.EqualsFold(straw, needle)

or, even better, compile a regexp literal for needle and use it for the entire loop.

riking avatar Oct 16 '19 21:10 riking