以下作品完美无缺:
export default function x () {
return 'hello world'
}
export function y () {
return x()
}
console.log(y())
然而,这不起作用:
export default async function x () {
return 'hello world'
}
export function y () {
return x()
.then(console.log)
}
y()
default
函数async
由于某种原因x is not defined
而func init()
。