Skip to content

Instantly share code, notes, and snippets.

@hugoalmeidahh
Forked from diego3g/help.js
Created June 23, 2021 01:48
Show Gist options
  • Save hugoalmeidahh/22b6f5664ae7f59c7ea2d288f843b07d to your computer and use it in GitHub Desktop.
Save hugoalmeidahh/22b6f5664ae7f59c7ea2d288f843b07d to your computer and use it in GitHub Desktop.
const { transactions, balance } = response.data;
const newTransactions = transactions.map(transaction => {
return {
...transaction,
formattedValue: formatValue(transaction.value),
// outros campos aqui
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment