A Wrapper around object-manip to be used on any object to allow transformations.
npm install trans.form> A Wrapper around object-manip to be used on any object to allow transformations.
To see why this is _safe or not safe_ refer to my library
```
$ npm install --save trans.form
`js`
const transform = require('trans.form');
let x = {
a: 2
}
x transform {
return x + 2;
}
} )
//=> { a: 4 }
Returns the key to be able to manipulate the object.
#### Methods available to all Objects
#### input
Type: Object`
Must conform to the formatting specified by object-manip
Returns a new object after all the values of the current object have been transformed.
#### This is a mutable method!
This if the exact same as above but saves all changes into the object.
MIT © Nick The Sick