Files
Desktop/js
lilia a3ae3cab79 Use Promise.reject for simplicity
The following are equivalent, except that the first is longer and
invokes an extra function call.

```
return new Promise(function(resolve, reject) {
  reject(new Error("Unknown Group"));
});

return Promise.reject(new Error("Unknown Group"));
```
2015-07-14 13:39:36 -07:00
..
2015-07-08 17:53:47 -07:00
2015-07-13 13:03:43 -07:00
2015-02-19 00:22:23 -08:00
2015-05-15 11:39:23 -07:00
2015-05-15 11:39:23 -07:00