github.com/Aestek/consul@v1.2.4-0.20190309222502-b2c31e33971a/ui-v2/app/utils/model/writable.js (about) 1 export default function(model, props, attr = {}) { 2 model.eachAttribute(function(item) { 3 attr[item] = { 4 ...attr[item], 5 ...{ 6 serialize: props.indexOf(item) !== -1, 7 }, 8 }; 9 }); 10 return attr; 11 }