removeChild
Remove a node from an element, effectively Node.prototype.removeChild.
mutate.removeChild.call(parent, child)
Parameters
- parent
{Node}:The parent from which the child is removed.
- child
{Node}:The child which will be removed from the parent.
Returns
{Node}:
The removed child.