(value: string)
| 12 | const MAX_MARKER_LEN = 160 |
| 13 | |
| 14 | function text(value: string): { type: 'text'; value: string } { |
| 15 | return { type: 'text', value } |
| 16 | } |
| 17 | |
| 18 | function isFeatureEnabled(): boolean { |
| 19 | return feature('BREAK_CACHE_COMMAND') ? true : false |