(group, options)
| 5631 | |
| 5632 | |
| 5633 | const wrapFragment = function wrapFragment(group, options) { |
| 5634 | if (group instanceof DocumentFragment) { |
| 5635 | return makeSpan([], [group], options); |
| 5636 | } |
| 5637 | |
| 5638 | return group; |
| 5639 | }; // These are exact object types to catch typos in the names of the optional fields. |
| 5640 | |
| 5641 | |
| 5642 | // Computes the updated `children` list and the overall depth. |
nothing calls this directly
no test coverage detected