(checkpointId, checkpointsOrCheckpointsId)
| 203 | 2 |
| 204 | ); |
| 205 | var useCheckpoint = (checkpointId, checkpointsOrCheckpointsId) => useListenable( |
| 206 | CHECKPOINT, |
| 207 | useCheckpointsOrCheckpointsById(checkpointsOrCheckpointsId), |
| 208 | 5, |
| 209 | [checkpointId] |
| 210 | ); |
| 211 | var wrap = (children, separator, encloseWithId, id) => { |
| 212 | const separated = isUndefined(separator) || !isArray(children) ? children : arrayMap(children, (child, c) => c > 0 ? [separator, child] : child); |
| 213 | return encloseWithId ? [id, ":{", separated, "}"] : separated; |
no test coverage detected
searching dependent graphs…