Sha256: ff7e44f2f7920a53bcd9194bfc0edf206f544b4df404a64c67e4842fff4d0633
Contents?: true
Size: 609 Bytes
Versions: 92
Compression:
Stored size: 609 Bytes
Contents
import { extend } from './util'; import { h } from './h'; /** * Clones the given VNode, optionally adding attributes/props and replacing its * children. * @param {import('./vnode').VNode} vnode The virtual DOM element to clone * @param {object} props Attributes/props to add when cloning * @param {Array<import('./vnode').VNode>} [rest] Any additional arguments will be used as replacement * children. */ export function cloneElement(vnode, props) { return h( vnode.nodeName, extend(extend({}, vnode.attributes), props), arguments.length>2 ? [].slice.call(arguments, 2) : vnode.children ); }
Version data entries
92 entries across 92 versions & 1 rubygems