go test -run=NONE -bench=. -benchmem -count=6 ./... > old.txt
# make changes
go test -run=NONE -bench=. -benchmem -count=6 ./... > new.txt
go install golang.org/x/perf/cmd/benchstat@latest
benchstat old.txt new.txt
Unidecode implements a unicode transliterator, which
replaces non-ASCII characters with their ASCII
counterparts.
Given an unicode encoded string, returns
another string with non-ASCII characters replaced
with their closest ASCII counterparts.
e.g. Unicode("áéíóú") => "aeiou"