Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 547 Bytes

README.md

File metadata and controls

28 lines (17 loc) · 547 Bytes

rename-key

Rename a single key in an object

Installation

// npm
$ npm install rename-key

Usage

var renameKey = require('rename-key');

var pets = { hans:  'cat', hugo: 'dog' };

// as a function
renameKey(pets, 'hans', 'per'); // { hugo: 'dog', per: 'cat' }
pets; // { hugo: 'dog', per: 'cat' }

// as a method
pets.renameKey = renameKey;
pets.renameKey('hugo', 'superman'); // { superman: 'dog', per: 'cat' }

Alters the object "by reference" and returns the object.

License

MIT © Thomas Jensen