(value any)
| 278 | } |
| 279 | |
| 280 | func asInt64Ptr(value any) (*int64, bool) { |
| 281 | v, ok := asInt64(value) |
| 282 | if !ok { |
| 283 | return nil, false |
| 284 | } |
| 285 | return &v, true |
| 286 | } |
| 287 | |
| 288 | func nonEmptyString(value any) (string, bool) { |
| 289 | v, ok := value.(string) |
no test coverage detected