minor tweak...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2022-06-08 03:45:06 +03:00
parent e6a19e905c
commit 2768b23f9b

View File

@ -256,7 +256,7 @@ object.Constructor('IterablePromise', Promise, {
[cur, ...other]
: other instanceof Promise ?
[...cur, other]
: cur.concat(other),
: [...cur, ...other],
'raw') },
push: function(elem){
return this.concat([elem]) },