(partialValues)
| 1978 | () => validateValues(values) ? setValidValues(values) : 0 |
| 1979 | ); |
| 1980 | const setPartialValues = (partialValues) => fluentTransaction( |
| 1981 | () => validateValues(partialValues, 1) ? objMap( |
| 1982 | partialValues, |
| 1983 | (value, valueId) => setValidValue(valueId, value) |
| 1984 | ) : 0 |
| 1985 | ); |
| 1986 | const setValue = (valueId, value, skipMiddleware) => fluentTransaction( |
| 1987 | (valueId2) => ifNotUndefined( |
| 1988 | getValidatedValue( |
nothing calls this directly
no test coverage detected
searching dependent graphs…