MCPcopy Index your code
hub / github.com/QwikDev/qwik / getMemberNameCounts

Function getMemberNameCounts

scripts/api-docs.ts:309–315  ·  view source on GitHub ↗
(members: Pick<ApiMember, 'name'>[])

Source from the content-addressed store, hash-verified

307}
308
309function getMemberNameCounts(members: Pick<ApiMember, 'name'>[]) {
310 return members.reduce((acc: Record<string, number>, m) => {
311 const normalizedName = m.name.toLowerCase();
312 acc[normalizedName] = (acc[normalizedName] || 0) + 1;
313 return acc;
314 }, {});
315}
316
317function getMemberAnchorId(
318 m: Pick<ApiMember, 'id' | 'kind' | 'name'>,

Callers 2

createApiDataFunction · 0.85
createApiMarkdownFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…