diff --git a/Promise.js b/Promise.js index a15f712..081e4f3 100644 --- a/Promise.js +++ b/Promise.js @@ -3,6 +3,7 @@ * This defines the following extensions to Promise: * * Promise.iter(seq) +* .iter() * Iterable promise object. * Similar to Promise.all(..) but adds basic iterator/generator * API and will resolve the items as they are ready (resolved). @@ -16,6 +17,11 @@ * Exposes the API to resolve/reject the promise object * externally. * +* .as(obj) +* Promise proxy. +* Proxies the methods available from obj to promise value. +* +* * * **********************************************/ /* c8 ignore next 2 */