(value)
| 1071 | } |
| 1072 | |
| 1073 | function hasValue(value) { |
| 1074 | return value !== null && value !== undefined; |
| 1075 | } |
| 1076 | |
| 1077 | function valuesDiffer(leftValue, rightValue, formatter = (value) => String(value)) { |
| 1078 | const leftMissing = !hasValue(leftValue); |
no outgoing calls
no test coverage detected