diff --git a/Promise.js b/Promise.js index d6b2bbc..52452e2 100644 --- a/Promise.js +++ b/Promise.js @@ -78,6 +78,7 @@ object.Constructor('IterablePromise', Promise, { // .includes(..) // .some(..) / .every(..) // .sort(..) + // XXX should these support STOP??? map: function(func){ return this.constructor(this.__list, function(e){ return [func(e)] }) },