function isSimpleSpan (vnode) {
  return vnode.children &&
    vnode.children.length === 1 &&
    !vnode.children[0].tag
}