JSTQL-JS-Transform/dsl_files/test.jstl
2024-05-28 22:25:34 +02:00

11 lines
No EOL
222 B
Text

proposal (async) {
applicable to {
let _$_a_$_ = await _$_expr_$_();
console.log(_$_a_$_);
}
replace with {
_$_expr_$_().then(() => {
console.log(_$_a_$_);
})
}
}