Renames properties. Work in objects or arrays.
$ npm install --save rename-property
const rename = require('rename-property');
thisismyobject = { thisisaproperty: "abc" };
rename.property( thisismyobject, "thisisaproperty", "thisisanotherproperty" );
-> thisismyobject = { thisisanotherproperty: "abc" }
ISC