diff options
-rw-r--r-- | src/util/sugar.js | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/util/sugar.js b/src/util/sugar.js index d0b7ffab..183a75d5 100644 --- a/src/util/sugar.js +++ b/src/util/sugar.js @@ -183,8 +183,14 @@ export const compareArrays = (arr1, arr2, {checkOrder = true} = {}) => : arr1.every((x) => arr2.includes(x))); // Stolen from jq! Which pro8a8ly stole the concept from other places. Nice. -export const withEntries = (obj, fn) => - Object.fromEntries(fn(Object.entries(obj))); +export const withEntries = (obj, fn) => { + const result = fn(Object.entries(obj)); + if (result instanceof Promise) { + return result.then(entries => Object.fromEntries(entries)); + } else { + return Object.fromEntries(result); + } +} export function setIntersection(set1, set2) { const intersection = new Set(); |