Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2022-12-30 00:37:50 +03:00
parent 4be131e66b
commit 7f52467a8d

View File

@ -373,7 +373,8 @@ object.Constructor('IterablePromise', Promise, {
: elem instanceof Array ?
[handler(unwrap( elem ))]
// raw element...
: handler(elem) },
// NOTE: no need to wrap or unwrap here...
: handler( elem ) },
// handle STOP...
function(){
stop = true })