UNPKG

cognitive-complexity-ts

Version:

This program analyses TypeScript and JavaScript code according to the [Cognitive Complexity metric](https://www.sonarsource.com/docs/CognitiveComplexity.pdf). It produces a JSON summary and a GUI for exploring the complexity of your codebase.

11 lines 328 B
import { addStyleSheet } from "./framework.js"; addStyleSheet(import.meta.url); export function flexGrow(component) { component.dom.classList.add("flex-grow"); return component; } export function flexNone(component) { component.dom.classList.add("flex-none"); return component; } //# sourceMappingURL=flex.js.map