(value any)
| 383 | } |
| 384 | |
| 385 | func truthyStringFromSnapshot(value any) string { |
| 386 | if !snapshotTruthy(value) { |
| 387 | return "" |
| 388 | } |
| 389 | return fmt.Sprint(value) |
| 390 | } |
| 391 | |
| 392 | func intFromSnapshot(value any) (int, bool) { |
| 393 | if !snapshotTruthy(value) { |
no test coverage detected