AcceptsLanguagesExtended checks if the specified language is acceptable using RFC 4647 Extended Filtering.
(offers ...string)
| 75 | // AcceptsLanguagesExtended checks if the specified language is acceptable using |
| 76 | // RFC 4647 Extended Filtering. |
| 77 | func (r *DefaultReq) AcceptsLanguagesExtended(offers ...string) string { |
| 78 | header := joinHeaderValues(r.c.fasthttp.Request.Header.PeekAll(HeaderAcceptLanguage)) |
| 79 | return getOffer(header, acceptsLanguageOfferExtended, offers...) |
| 80 | } |
| 81 | |
| 82 | // App returns the *App reference to the instance of the Fiber application |
| 83 | func (r *DefaultReq) App() *App { |
nothing calls this directly
no test coverage detected