New Promise Syntax Proposal
Augusto Moura
augusto.borgesm at gmail.com
Mon Nov 6 19:05:50 UTC 2017
Using arrow functions it doesn't seems so verbose
```js
function requestInput(question) {
return new Promise(function(resolve) {
interface.question(question, function(input) {
resolve(input);
})
})
}
```
can be written as:
```js
const requestInput = question => new Promise((resolve) => {
interface.question(question, resolve); // You can wrap resolve in a
`unary` helper if more than 1 argument is problematic
});
```
I don't see a problem with verbosity
--
Augusto Moura
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20171106/d78a8200/attachment.html>
More information about the es-discuss
mailing list