(text: string, contentStart: number, lineEnd: number)
| 71 | |
| 72 | /** True for a blank (whitespace-only) or comment line. */ |
| 73 | const isBlankOrComment = (text: string, contentStart: number, lineEnd: number): boolean => |
| 74 | contentStart >= lineEnd || text.charCodeAt(contentStart) === HASH; |
| 75 | |
| 76 | /** |
| 77 | * True when the line opens a block scalar (`key: |`, `key: >-`, etc.), meaning |
no outgoing calls
no test coverage detected