(s: &str)
| 283 | } |
| 284 | |
| 285 | fn to_option_string(s: &str) -> Option<&str> { |
| 286 | match s { |
| 287 | "" => None, |
| 288 | _ => Some(s), |
| 289 | } |
| 290 | } |
| 291 | |
| 292 | fn event_into_details(event: &Event) -> JsValue { |
| 293 | JsValue::from(event) |
nothing calls this directly
no outgoing calls
no test coverage detected