Files
oh-my-opencode/src/hooks/comment-checker/initialization-gate.ts
T

8 lines
174 B
TypeScript

let initialized = false
export function ensureCommentCheckerInitialization(initializer: () => void): void {
if (initialized) return
initialized = true
initializer()
}