文件名称:fat-arrow:如果您周围没有 () => 则轻松退货
文件大小:3KB
文件格式:ZIP
更新时间:2024-07-07 15:20:54
JavaScript
肥箭 如果您周围没有() => ,则可以轻松返回。 当您必须在.then()链中返回另一个值时,可以很好地与 Promise 配合使用。 实际上,这只是一个闭包即模块。 安装 $ npm install fat-arrow 用法 const fa = require ( 'fat-arrow' ) Promise . resolve ( 'myVal' ) . then ( asyncAction ) // => 'myVal' function asyncAction ( val ) { return Promise . resolve ( 'anotherVal' ) . then ( fa ( val ) ) } 执照
【文件预览】:
fat-arrow-master
----test.js(353B)
----.travis.yml(164B)
----LICENSE(1KB)
----README.md(1KB)
----.gitignore(164B)
----index.js(173B)
----package.json(638B)