| Crates.io | js_lib |
| lib.rs | js_lib |
| version | 0.0.1 |
| created_at | 2022-10-22 07:06:30.693994+00 |
| updated_at | 2022-10-22 07:06:30.693994+00 |
| description | Simple 'javascript-like' functions |
| homepage | |
| repository | https://github.com/MitchellRhysHall/js_lib |
| max_upload_size | |
| id | 694172 |
| size | 4,535 |
The js_lib crate provides simple 'javascript-like' functions.
use js_lib::fetch;
# async fn example() -> Result<(), js_lib::Error> {
let result = fetch("https://www.google.com/").await;
# Ok(())
# }