(o: T)
| 263 | return merged as StackState; |
| 264 | } |
| 265 | function stripUndefined<T extends Record<string, unknown>>(o: T): Partial<T> { |
| 266 | return Object.fromEntries(Object.entries(o).filter(([, v]) => v != null)) as Partial<T>; |
| 267 | } |
| 268 | |
| 269 | /** Resolve the Terraform module dir shipped with @hyperframes/gcp-cloud-run. */ |
| 270 | function terraformDir(): string { |
no test coverage detected