This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 13
13
* [Kris Kowal's Q](https://github.com/kriskowal/q).
14
14
*
15
15
* $q can be used in two fashions --- one which is more similar to Kris Kowal's Q or jQuery's Deferred
16
- * implementations, and the other which resembles ES6 promises to some degree.
16
+ * implementations, and the other which resembles ES6 (ES2015) promises to some degree.
17
17
*
18
18
* # $q constructor
19
19
*
20
20
* The streamlined ES6 style promise is essentially just using $q as a constructor which takes a `resolver`
21
- * function as the first argument. This is similar to the native Promise implementation from ES6 Harmony ,
21
+ * function as the first argument. This is similar to the native Promise implementation from ES6,
22
22
* see [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise).
23
23
*
24
- * While the constructor-style use is supported, not all of the supporting methods from ES6 Harmony promises are
24
+ * While the constructor-style use is supported, not all of the supporting methods from ES6 promises are
25
25
* available yet.
26
26
*
27
27
* It can be used like so:
You can’t perform that action at this time.
0 commit comments