Async API Calls
Changelog
- The "get" function now handles calls asynchronously
async function get() {
try {
test = await node.get(
"https://apiurlhere.com/",["api key desc", "api key value"])
.then(console.log("done"));
}
finally {
console.log(test);
}
};- Documentation has been updated and examples have been added.