Skip to content

Instantly share code, notes, and snippets.

View ondrui's full-sized avatar
😇

Andrey Soloviev ondrui

😇
View GitHub Profile
@ondrui
ondrui / promise-tuple.js
Created November 18, 2023 10:32 — forked from fnky/promise-tuple.js
Retrieve tuples from Promise results / async functions
/**
* Returns a Promise which resolves with a value in form of a tuple.
* @param promiseFn A Promise to resolve as a tuple.
* @returns Promise A Promise which resolves to a tuple of [error, ...results]
*/
export function tuple (promise) {
return promise
.then((...results) => [null, ...results])
.catch(error => [error])
}