文件名称:p-log:记录承诺的价值错误
文件大小:5KB
文件格式:ZIP
更新时间:2024-05-20 14:28:13
JavaScript
对数 记录承诺的价值/错误 安装 $ npm install p-log 用法 import pLog from 'p-log' ; Promise . resolve ( 'unicorn' ) . then ( pLog ( ) ) // Logs `unicorn` . then ( value => { // `value` is still `unicorn` } ) ; import pLog from 'p-log' ; Promise . resolve ( ) . then ( ( ) => { throw new Error ( 'pony' ) ; } ) . catch ( pLog . catch ( ) ) // Logs `Error: pony` . catch ( error => { // `error` is still `
【文件预览】:
p-log-main
----.gitignore(23B)
----package.json(883B)
----.npmrc(19B)
----index.js(221B)
----test.js(559B)
----.github()
--------workflows()
----license(1KB)
----readme.md(1KB)
----index.test-d.ts(571B)
----.gitattributes(19B)
----.editorconfig(175B)
----index.d.ts(1KB)