(v, c)
| 1503 | * @returns {boolean | undefined} true, when v is truthy or undefined, or c is truthy |
| 1504 | */ |
| 1505 | const conditionallyOptimistic = (v, c) => (v === undefined && c) || v; |
| 1506 | |
| 1507 | F( |
| 1508 | environment, |
no outgoing calls
no test coverage detected