-
I would like a repository to discuss Assimilation. I have made the following draft to get the ball rolling:
# Assimilation/A+ - Draft A
This spec aims to specify a method for converting a `thenabl…
-
In #10, I'm starting to see the light of polymorphic resolve and reject. Still, that leaves us with a terminology and pedagogy issue.
Can anyone think of something better than the following?
- Change…
-
Background: https://github.com/domenic/promise-tests
It's painful to see that @domenic has bought off on Mocha/Sinon and the shit-show that is Node testing, but the test suite is comprehensive and we…
-
I was about to commit this for discussion, before I realized a potentially fatal flaw that made me contemplate Draft B (#2).
---
# Promises/A+ Extension: Synchronous Inspection
This proposal extends…
-
I cannot get the value out of a promise. `valueOf` seems to be the way to do this, but it is either broken or I misunderstood how to use it.
Testcase `q.valueof.js`
``` javascript
#!/usr/bin/env nod…
-
For Node, print the list of unresolved errors when an application exits, whether gracefully or not.
Hat tip to @tlrobinson.
-
Currently none of the major libraries pass the fully-finished 1.0 version of the [Promises/A+ test suite](https://npmjs.org/package/promises-aplus-tests) that I published to npm an hour ago. You could…
-
We don't like it anymore, I think. It should die before 0.9 goes out the door.
-
It would be nice if `Q.all()` accepted any other promises-aplus promises.
``` javascript
function delay() {
var a = require('promises-a');
var def = a();
setTimeout(function () { def.fulfill('f…
-
I have a use case when composite promise should always resolve and return an array of rejected or resolved results. I do not really care of the results, but I must synchronize my promises.
``` js
fun…