MCPcopy Create free account
hub / github.com/MirrowApp/mirrow / isSpecialCodeblock

Function isSpecialCodeblock

packages/core/src/data/codeblocks.ts:272–280  ·  view source on GitHub ↗
(name: string)

Source from the content-addressed store, hash-verified

270}
271
272export function isSpecialCodeblock(name: string): {
273 valid: boolean;
274 kind?: string;
275} {
276 if (specialCodeblocks.has(name.toLowerCase())) {
277 return { valid: true, kind: name.toLowerCase() };
278 }
279 return { valid: false };
280}

Callers 1

parseMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected