()
| 120 | } |
| 121 | |
| 122 | const doUpdate = () => { |
| 123 | if (context.processor.value) { |
| 124 | context.processor.value.setData(context.surfaceId, path, newValue); |
| 125 | } |
| 126 | else if (context.dataModel.value) { |
| 127 | setData(context.dataModel.value, path, newValue); |
| 128 | } |
| 129 | }; |
| 130 | |
| 131 | if (debounceMs > 0) { |
| 132 | if (debounceTimer) { |
no test coverage detected