From 99c1d9af689e5325f3cf535c4007b3aeb8325229 Mon Sep 17 00:00:00 2001 From: Minteck Date: Tue, 10 Jan 2023 14:54:04 +0100 Subject: Update - This is an automated commit --- .../graphql/jsutils/promiseReduce.js.flow | 25 ---------------------- 1 file changed, 25 deletions(-) delete mode 100644 alarm/node_modules/graphql/jsutils/promiseReduce.js.flow (limited to 'alarm/node_modules/graphql/jsutils/promiseReduce.js.flow') diff --git a/alarm/node_modules/graphql/jsutils/promiseReduce.js.flow b/alarm/node_modules/graphql/jsutils/promiseReduce.js.flow deleted file mode 100644 index ea333bc..0000000 --- a/alarm/node_modules/graphql/jsutils/promiseReduce.js.flow +++ /dev/null @@ -1,25 +0,0 @@ -// @flow strict -import type { PromiseOrValue } from './PromiseOrValue'; - -import isPromise from './isPromise'; - -/** - * Similar to Array.prototype.reduce(), however the reducing callback may return - * a Promise, in which case reduction will continue after each promise resolves. - * - * If the callback does not return a Promise, then this function will also not - * return a Promise. - */ -export default function promiseReduce( - values: $ReadOnlyArray, - callback: (U, T) => PromiseOrValue, - initialValue: PromiseOrValue, -): PromiseOrValue { - return values.reduce( - (previous, value) => - isPromise(previous) - ? previous.then((resolved) => callback(resolved, value)) - : callback(previous, value), - initialValue, - ); -} -- cgit