JSTQL-JS-Transform/src/test/test_outputs/awaitToPromise_output.js

9 lines
159 B
JavaScript
Raw Normal View History

async function something() {
let a = 100;
a *= 100000;
return fetch("https://uib.no").then(uib => {
a += 100000;
a -= 1000;
[a, uib];
});
}