Files
reqwest-impersonate/examples/wasm_header/index.js
John Gallagher f6f81f9cc1 wasm: Add request body in the form of Bytes (#696)
* Add body bytes

* Add example and header creation code
2019-11-04 09:17:05 -08:00

9 lines
168 B
JavaScript

const rust = import('./pkg');
rust
.then(m => {
return m.run().then((data) => {
console.log(data);
})
})
.catch(console.error);