()
| 276 | * Killswitch pattern: GB can disable if issues surface externally. |
| 277 | */ |
| 278 | export function isCompactLinePrefixEnabled(): boolean { |
| 279 | // 3P default: killswitch off = compact format enabled. Client-side only — |
| 280 | // no server support needed, safe for Bedrock/Vertex/Foundry. |
| 281 | return !getFeatureValue_CACHED_MAY_BE_STALE( |
| 282 | 'tengu_compact_line_prefix_killswitch', |
| 283 | false, |
| 284 | ) |
| 285 | } |
| 286 | |
| 287 | /** |
| 288 | * Adds cat -n style line numbers to the content. |
no test coverage detected