Last active
July 6, 2019 17:17
-
-
Save nicolasmendonca/569fcad89faf029c9e2241b517b27bcd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const response1 = [ | |
{ id: 1, productName: 'Chair' }, | |
{ id: 2, productName: 'Table' }, | |
]; | |
const requiredResponse1Output = [ | |
{ id: 1, product: { name: 'Chair' } }, | |
{ id: 2, product: { name: 'Table' } }, | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment