UNPKG

256 BJavaScriptView Raw
1import { clone, extend } from './util';
2import { h } from './h';
3
4export function cloneElement(vnode, props) {
5 return h(
6 vnode.nodeName,
7 extend(clone(vnode.attributes), props),
8 arguments.length>2 ? [].slice.call(arguments, 2) : vnode.children
9 );
10}