windjs文档中的笔误
Opened this issue · 0 comments
qiankanglai commented
try {
$await(fs.mkdir("./hello-world"));
} catch (ex) {
// 出错了
}
应该是
$await(fs.mkdirAsync ("./hello-world"));
吧?
Opened this issue · 0 comments
try {
$await(fs.mkdir("./hello-world"));
} catch (ex) {
// 出错了
}
应该是
$await(fs.mkdirAsync ("./hello-world"));
吧?