Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2021-04-28 17:21:45 +03:00
parent 4530074cdb
commit 44897d94c5

View File

@ -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)] }) },