append method

Node append(
  1. Node node
)

Implementation

Node append(Node node) {
  insertBefore(node, null);

  // DocumentFragment is handled differently, according to Mozilla
  if (node is DocumentFragment) {
    return DocumentFragment();
  }

  return node;
}