(key, value)
| 1465 | |
| 1466 | const UPDATE = 'UPDATE'; |
| 1467 | function update(key, value) { |
| 1468 | return { |
| 1469 | type: UPDATE, |
| 1470 | key, |
| 1471 | value, |
| 1472 | toString() { |
| 1473 | return `update('${key}', ${value})`; |
| 1474 | }, |
| 1475 | }; |
| 1476 | } |
| 1477 | |
| 1478 | function randomInteger(min, max) { |
| 1479 | min = Math.ceil(min); |
no outgoing calls
no test coverage detected