* fix: replace backslashes with forward slashes from resolved path for windows environments * add test for resolveAbsoluteRuntime under windows
10 lines
113 B
JavaScript
10 lines
113 B
JavaScript
async function test () {
|
|
console.log('test')
|
|
}
|
|
|
|
async function main () {
|
|
console.log(await test())
|
|
}
|
|
|
|
main()
|