A function used to insert a new node using a target node.

Example

myInserter = (node, target) => target.append(node);
interface IInserter ((node, target) => void)