(message: impl Into<String>)
| 44 | } |
| 45 | |
| 46 | fn napi_error(message: impl Into<String>) -> napi::Error { |
| 47 | napi::Error::from_reason(message.into()) |
| 48 | } |
| 49 | |
| 50 | fn ws_url_from_base(raw: &str) -> Result<String> { |
| 51 | let mut url = |
no outgoing calls
no test coverage detected