(input: string)
| 86 | |
| 87 | // https://github.com/idimetrix/text-case/blob/master/packages/upper-case-first/src/index.ts |
| 88 | export function upperCaseFirst(input: string): string { |
| 89 | return input.charAt(0).toUpperCase() + input.slice(1).toLowerCase(); |
| 90 | } |
| 91 | |
| 92 | const cachePerPage = { |
| 93 | cacheKey: () => location.pathname, |
no outgoing calls
no test coverage detected