MCPcopy Index your code
hub / github.com/refined-github/refined-github / upperCaseFirst

Function upperCaseFirst

source/github-helpers/index.ts:88–90  ·  view source on GitHub ↗
(input: string)

Source from the content-addressed store, hash-verified

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

Callers 4

renderShortcutFunction · 0.85
previewFunction · 0.85
markFormFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected