Skip to content

Instantly share code, notes, and snippets.

@coliveravenegas
Created April 5, 2020 23:08
Show Gist options
  • Save coliveravenegas/f4e9337ee758ddb1b6d5412fe225d6ad to your computer and use it in GitHub Desktop.
Save coliveravenegas/f4e9337ee758ddb1b6d5412fe225d6ad to your computer and use it in GitHub Desktop.
const convertObj = (x, y, z) => {
const k = Object.keys(x);
return k.map((key) => {
return {
[y]: key,
[z]: x[key],
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment