UNPKG

@nozbe/watermelondb

Version:

Build powerful React Native and React web apps that scale from hundreds to tens of thousands of records and remain fast

7 lines (4 loc) 160 B
// @flow const allPromises = <T, U>(action: (T) => Promise<U>, promises: T[]): Promise<U[]> => Promise.all(promises.map(action)) export default allPromises