[github地点:https://github.com/ABCDdouyae…]
merge-descriptors (express源码依靠)
一个对象的属性继续另一个对象的属性及其属性描述符
用法
:mixin(继续者, 被继续者, 是不是继续者有该属性的时刻继续【默许true不继续】)
返回
:继续后的新的对象
const mixin = require('merge-descriptors');
let a = {};
Object.defineProperty(a, 'name', {
value:1,
configurable: true,
enumerable: true,
writable: true,
})
console.log(a);//{name: 1}
let b = {};
let c = mixin(b, a);
console.log(c);//{name: 1}
c.name = 2;
console.log(c, a);//{name: 2} {name: 1}
当第三个参数为false时刻,原对象又该属性则没有继续被继续者的属性和属性描述符
let d = {sex: 'woman', job: 'IT'};
Object.defineProperties(d, {
sex: {
get(){
return 'man'
}
}
})
let e = {sex: '123'};
let f = mixin(e, d, false);
console.log(f.sex);//123