8 lines
174 B
TypeScript
8 lines
174 B
TypeScript
|
|
let initialized = false
|
||
|
|
|
||
|
|
export function ensureCommentCheckerInitialization(initializer: () => void): void {
|
||
|
|
if (initialized) return
|
||
|
|
initialized = true
|
||
|
|
initializer()
|
||
|
|
}
|