({ children, separator, debugIds, id })
| 1331 | [] |
| 1332 | ); |
| 1333 | var Wrap = ({ children, separator, debugIds, id }) => { |
| 1334 | const separated = isUndefined(separator) || !isArray(children) ? children : arrayMap(children, (child, c) => c > 0 ? [separator, child] : child); |
| 1335 | return debugIds && !isUndefined(id) ? [id, ":{", separated, "}"] : separated; |
| 1336 | }; |
| 1337 | var CheckpointView = ({ checkpoints, checkpointId, debugIds }) => /* @__PURE__ */ jsx(Wrap, { |
| 1338 | debugIds, |
| 1339 | id: checkpointId, |
nothing calls this directly
no test coverage detected
searching dependent graphs…