Function: isBlankOrCommentLine()
function isBlankOrCommentLine(line: string): boolean;
Defined in: _internal/config-file-scanner.ts:60
Returns true when the line should be skipped during structural parsing:
blank lines and comment lines (whose first non-whitespace character is #).
Applies to both YAML and TOML config files.
Parametersâ
lineâ
string
Returnsâ
boolean