cb-promisify
v1.0.4
Published
Turn callbacks into a promise
Downloads
7
Readme
cb-promisify
将回调函数转换为promise的形式
示例
const readdir = promisify(fs.readdir);
fsReaddirPro(workplace + 'images/')
.then(res => console.log(res))
.catch(err => console.log(err))