* Adds a child to the parent tutorial. Does *not* set child.parent though. * * @param {Tutorial} parent - parent tutorial. * @param {Tutorial} child - New child. * @private
({children}, child)
| 28 | * @private |
| 29 | */ |
| 30 | function addChild({children}, child) { |
| 31 | children.push(child); |
| 32 | } |
| 33 | |
| 34 | /** |
| 35 | * Represents a single JSDoc tutorial. |
no outgoing calls
no test coverage detected
searching dependent graphs…