Changing class based on page in naviagation

Given the following:

    {{ range .Paginator.Pagers }}
            <li class=""><a href="{{ .URL }}" aria-label="Page {{ .PageNumber }}">{{ .PageNumber }}</a></li>
    {{end}}

How can I change the class of the <li> tag to current (eg. <li class = "current">) for the current page?

https://github.com/spf13/hugo/blob/master/tpl/template_embedded.go#L117