combind
v1.0.1
Published
```js import combind from 'combind';
Downloads
3
Readme
Usage
import combind from 'combind';
let person = {
name: 'Orago',
age: 17,
}
console.log(person);
//Result =>
{
'name': 'Orago',
'age': 17
}
combind(person, {
cool: true,
webDev: 'maybe',
});
//Result =>
{
'name': 'Orago',
'age': 17,
'cool': true,
'webDev': 'maybe',
}