* Adds a node to the end of the list of children of this node. * @param {Node} child The node to append to the given parent node. * @returns The appended child.
(child)
| 3092 | * @returns The appended child. |
| 3093 | */ |
| 3094 | appendChild(child) { |
| 3095 | return child; |
| 3096 | } |
| 3097 | /** |
| 3098 | * Replaces a child node within this node |
| 3099 | * @param {Node} newChild The new node to replace oldChild. |
no outgoing calls
no test coverage detected