Skip to content

Instantly share code, notes, and snippets.

@jhesgodi
Created April 18, 2018 01:18
Show Gist options
  • Save jhesgodi/7911fdfedc74517b259b266dd4852c99 to your computer and use it in GitHub Desktop.
Save jhesgodi/7911fdfedc74517b259b266dd4852c99 to your computer and use it in GitHub Desktop.
function replaceObjectKey(data, from, to) {
const { [from]: value, ...rest } = data
return {
...rest,
[to]: value,
}
}
const data = { name: 'Jhesg', age: 27 }
replaceObjectKey(data, 'name', 'username')
// { username: 'Jhesg', age: 27 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment