(value: unknown)
| 70 | } |
| 71 | |
| 72 | export function readString(value: unknown): string | undefined { |
| 73 | return typeof value === 'string' && value.length > 0 ? value : undefined; |
| 74 | } |
| 75 | |
| 76 | /** |
| 77 | * Whether a path/entrypoint names a Dockerfile that this builder should build. |
no outgoing calls
no test coverage detected