(args: &Dictionary, key: &str)
| 1238 | } |
| 1239 | |
| 1240 | fn data_value(args: &Dictionary, key: &str) -> Option<Vec<u8>> { |
| 1241 | args.get(key) |
| 1242 | .and_then(Value::as_data) |
| 1243 | .map(ToOwned::to_owned) |
| 1244 | } |
| 1245 | |
| 1246 | pub fn webkit_inspector_ui_root() -> Option<PathBuf> { |
| 1247 | [ |
no test coverage detected