Skip to content

Instantly share code, notes, and snippets.

@fsjorgeluis
Created December 16, 2021 18:25
Show Gist options
  • Save fsjorgeluis/f420f139bd912bc7669536e76f208825 to your computer and use it in GitHub Desktop.
Save fsjorgeluis/f420f139bd912bc7669536e76f208825 to your computer and use it in GitHub Desktop.
Rename object key
export const renameKey = (object: any, key: string, newKey: string) => {
const clonedObj: Record<string, unknown> = clone(object);
const targetKey = clonedObj[key];
delete clonedObj[key];
clonedObj[newKey] = targetKey;
return clonedObj;
};
const clone = (object) => Object.assign({}, object);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment