From d4362f1fbcc56b97ad52b04e39aa6a5b705e0e18 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Sat, 11 Jun 2022 14:45:10 +0300 Subject: [PATCH] notes... Signed-off-by: Alex A. Naanou --- Promise.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Promise.js b/Promise.js index d2f87b8..ab065fe 100644 --- a/Promise.js +++ b/Promise.js @@ -314,6 +314,8 @@ object.Constructor('IterablePromise', Promise, { // promises for values because any promise in .__list makes the // value count/index non-deterministic... sort: iterPromiseProxy('sort'), + // XXX we could have a special-case here for .slice()/slice(0, -1) + // and possibly othets, should we??? slice: iterPromiseProxy('slice'), entries: iterPromiseProxy('entries'), keys: iterPromiseProxy('keys'),