From 2768b23f9b2b6b8b9b2cebfaf7b7410cd6199fce Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Wed, 8 Jun 2022 03:45:06 +0300 Subject: [PATCH] minor tweak... Signed-off-by: Alex A. Naanou --- Promise.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Promise.js b/Promise.js index f6206fa..2b684e9 100644 --- a/Promise.js +++ b/Promise.js @@ -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]) },