-
Is it necessary to keep seemingly random timeouts like these inside tests?
https://github.com/promises-aplus/promises-tests/blob/master/lib/tests/2.2.6.js#L131
https://github.com/promises-aplus/promi…
-
Current README suggests something promise-like, i.e.
```
fhir.search('Patient', queryObject)
.then(function(bundle){...})
```
Should we rely on (or provide a base implementation of) promises, and th…
-
1. choose one promise for default
2. allow user to use other promise libs
3. using promise when `Promise` is available in global?
4. only take care how to create a promise
- rsvp.js
- q
- bluebird
- …
-
It looks like you're using an older version of the **request** module which has a vulnerable version of **qs** ([see advisory](https://blog.liftsecurity.io/2014/08/06/denial-of-service-in-qs)).
[/pac…
-
The old GitHub pages site http://promises-aplus.github.io/promises-spec/ ranks really high in the Google search results for Promises/A+ but is apparently out of date and very few of the links in the f…
-
This is more of a discussion of the subject. I might help implement it if desired. There might be considerations that I'm not aware of, but here is my basic idea.
This is how I work with promises now…
-
The test case(in general, bad case...):
``` js
var p = new Promise(function(resolve, reject){
console.log("start");
resolve("");
});
p.then(function () {
console.log("1-1");
}).then(fun…
-
Hi Justin!
JQuery Deferred has a .notify() solution that seems handy when it comes to keeping track of loading progress etc. Any plans to implement something like this in promhx?
Jonas
-
I found example adapters on [this deprecated test suite](https://github.com/domenic/promise-tests), but the promises-aplus repo and readme don't talk much about how adapters are supposed to be impleme…
-
hey,
Because I wanted to compile some ES 6 to ES 5 I thought I will give this compiler a try. But I am already stuck at building. I run " make clean" but I get many error and make can't run through…