(component: &Json)
| 979 | } |
| 980 | |
| 981 | fn component_kind(component: &Json) -> Option<&str> { |
| 982 | component.get("kind").and_then(Json::as_str) |
| 983 | } |
| 984 | |
| 985 | /// Like `merge_json_value`, but concatenates a `pricing` component's `config.sources` |
| 986 | /// (higher-precedence first) instead of replacing them, so lower-precedence fallback sources survive. |
no test coverage detected