文件名称:async-nocatch:无需使用trycatch来处理您的asyncawait函数
文件大小:1KB
文件格式:ZIP
更新时间:2024-05-29 14:25:09
JavaScript
异步捕获 摆脱async/await功能的try/catch包装器。 为什么? 不必要的嵌套 失败并不总是错误,但是try/catch意味着处理错误 你应该总是catch 安装 npm i async-nocatch # or yarn add async-nocatch import nocatch from "async-nocatch" // For example const nocatchFetch = nocatch ( fetch ) 前 try { const result = await fetch ( 'https://api.github.com/users' ) console . log ( 'Done' , result ) } catch ( error ) { console . log ( 'Fail' , error ) } 后 cons
【文件预览】:
async-nocatch-master
----README.md(753B)
----index.js(300B)
----package.json(288B)