JSTQL-JS-Transform/src/index.ts

27 lines
313 B
TypeScript
Raw Normal View History

import * as babelparser from "../babel/packages/babel-parser";
2023-12-06 17:48:30 +00:00
/*
proposal await_to_promise {
applicable to {
let a = await b();
console.log(b);
}
transform to {
b().then((a) => {
console.log(a);
})
}
}
*/
const main = (
): void => {};
main();