js_lib 0.0.1

Simple 'javascript-like' functions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# js_lib


The `js_lib` crate provides simple 'javascript-like' functions.

## Making a http get request


```rust
use js_lib::fetch;
# async fn example() -> Result<(), js_lib::Error> {

let result = fetch("https://www.google.com/").await;
# Ok(())

# }

```