(target, source)
| 24 | let handlingSourceChange = false; |
| 25 | |
| 26 | function getChangedObject(target, source) { |
| 27 | let changedObject = {}; |
| 28 | Object.keys(source).forEach(key => { |
| 29 | if (target[key] !== source[key]) { |
| 30 | changedObject[key] = source[key]; |
| 31 | } |
| 32 | }); |
| 33 | return changedObject; |
| 34 | } |
| 35 | |
| 36 | function parseParams(str) { |
| 37 | if (!str) { |