From 44897d94c5a3a2c31d38bfe6ed796955096f4ab6 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Wed, 28 Apr 2021 17:21:45 +0300 Subject: [PATCH] notes... Signed-off-by: Alex A. Naanou --- Promise.js | 1 + 1 file changed, 1 insertion(+) 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)] }) },