UNPKG

@qso-soft/shared

Version:

Shared library for QSO-soft

10 lines 340 B
export const getFullDataByWallets = (wallets, jsonWallets) => { return wallets.reduce((acc, cur) => { const foundRow = jsonWallets.find((wallet) => wallet.walletAddress === cur); if (foundRow) { return [...acc, foundRow]; } return acc; }, []); }; //# sourceMappingURL=json-handlers.js.map