-
Worth discussing PROMS some time?
@Analyst-In-The-Wild and @milanwiedemann , what do you think?
-
```js
/**
* 返回的Promise与第一个有结果的一致
* @param {iterator} proms
*/
Promise.race=function(proms) {
return new MyPromise((resolve, reject) => {
for (const p of proms) {
M…
-
-
In RDRF 6.3.25.
URLs that are only meant for use on the PROMS site are also being registered for regular CIC and non-CIC sites in rdrf/rdrf/urls.py.
-
-
To use Ripple branding.
- [x] Show MPV with two new fields: PROM Count and PROM Date
- [x] On MPV, Cog drop down should include tick boxes in Date / Time and Count for PROM.
- [x] Show PROM on ri…
-
- [x] setup local test celery
- [x] task design on local stubs
- [x] management command to spawn tasks
- [x] celery task for checking and activating the send proms request task
- [x] baseline chec…
-
-
1) Birthdays
2) Weddings
3) Proms
4) Funerals
5) Parties
6) Fairs
7) Black friday!
-
```js
/**
* 等待所有的Promise有结果后
* 该方法返回的Promise完成
* 并且按照顺序将所有结果汇总
* @param {Iterable} proms
*/
Promise.allSettled=function(proms) {
const ps = [];
for (const p of proms)…