(trimmed: string)
| 111 | } |
| 112 | |
| 113 | function isReplayEnvLine(trimmed: string): boolean { |
| 114 | return trimmed === 'env' || trimmed.startsWith('env ') || trimmed.startsWith('env\t'); |
| 115 | } |
| 116 | |
| 117 | function parseReplayEnvLine(trimmed: string, lineNumber: number): { key: string; value: string } { |
| 118 | const body = trimmed.slice(3).replace(/^[\s]+/, ''); |
no test coverage detected