(s any, path ...string)
| 263 | } |
| 264 | |
| 265 | func jsonPath(s any, path ...string) any { |
| 266 | if len(path) == 0 { |
| 267 | return s |
| 268 | } |
| 269 | return jsonPath(s.(map[string]any)[path[0]], path[1:]...) |
| 270 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…