(attr, value)
| 299 | } |
| 300 | |
| 301 | function applyUpdate(attr, value) { |
| 302 | if(attr) modifyItem(attr, value); |
| 303 | var updateToApply = getUpdateObj(); |
| 304 | for(var key in updateToApply) { |
| 305 | Lib.nestedProperty(parentIn, key).set(updateToApply[key]); |
| 306 | } |
| 307 | } |
| 308 | |
| 309 | return { |
| 310 | modifyBase: modifyBase, |
nothing calls this directly
no test coverage detected
searching dependent graphs…