1.0.1 • Published 7 years ago
toxic v1.0.1
toxic
Mutate keys and values in objects. Returns a new version of the object
Install
npm install toxic --saveUsage
var toxic = require('toxic');
var mutatedObject = toxic({
key1: 'value1',
key2: 'value2'
}, {
mutator: function (val) {
return val + '...'
}
});
console.log(mutatedObject);
// OUTPUTS:
// {
// 'key1...': 'value1...',
// 'key2...': 'value2...'
// }API
toxic(object, options)
object- The object to perform mutations on.optionsmutator- Function that gets passed the current key or value. Default returns the value, as is.keyMutator- Function used ot mutate the keys. Overridesmutator.valueMutator- Function used ot mutate the values. Overridesmutator.
Run Tests
npm install
npm test