Easy returns for if you don't have a () =>
around. Works well with Promises
when you have to return another value in a .then()
chain. Actually this is
just a closure-as-a-module.
$ 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))
}