We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 424f0d0 commit 7ba4152Copy full SHA for 7ba4152
README.md
@@ -78,7 +78,8 @@ wait(promise)
78
Wait for a promise to be resolved on Javascript, and then returns the value. Uses emscripten_sleep. Also available as JSPromise class function:
79
80
```python
81
-response = JS('require')('node-fetch')('https://github.com').wait() #Returns response object
+fetch = JS('require')('node-fetch')
82
+response = fetch('https://github.com').wait() #Returns response object
83
html = response.text().wait() #Returns HTML string
84
```
85
0 commit comments