Skip to content

Instantly share code, notes, and snippets.

@diego3g
Last active June 23, 2021 01:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save diego3g/39aa5fa855f0e5eaee49af15554f2dd1 to your computer and use it in GitHub Desktop.
Save diego3g/39aa5fa855f0e5eaee49af15554f2dd1 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