(unitsOfWork)
| 1454 | |
| 1455 | const FLUSH = 'FLUSH'; |
| 1456 | function flush(unitsOfWork) { |
| 1457 | return { |
| 1458 | type: FLUSH, |
| 1459 | unitsOfWork, |
| 1460 | toString() { |
| 1461 | return `flush(${unitsOfWork})`; |
| 1462 | }, |
| 1463 | }; |
| 1464 | } |
| 1465 | |
| 1466 | const UPDATE = 'UPDATE'; |
| 1467 | function update(key, value) { |
no outgoing calls
no test coverage detected