(val)
| 1308 | // for undo: undefined initial vals must be turned into nulls |
| 1309 | // so that we unset rather than ignore them |
| 1310 | function undefinedToNull(val) { |
| 1311 | if (val === undefined) return null; |
| 1312 | return val; |
| 1313 | } |
| 1314 | |
| 1315 | /** |
| 1316 | * Factory function to wrap nestedProperty with GUI edits if necessary |
no outgoing calls
no test coverage detected
searching dependent graphs…