aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/preact/src/clone-element.js
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/preact/src/clone-element.js')
-rw-r--r--thirdparty/preact/src/clone-element.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/thirdparty/preact/src/clone-element.js b/thirdparty/preact/src/clone-element.js
deleted file mode 100644
index fc7103056..000000000
--- a/thirdparty/preact/src/clone-element.js
+++ /dev/null
@@ -1,10 +0,0 @@
-import { clone, extend } from './util';
-import { h } from './h';
-
-export function cloneElement(vnode, props) {
- return h(
- vnode.nodeName,
- extend(clone(vnode.attributes), props),
- arguments.length>2 ? [].slice.call(arguments, 2) : vnode.children
- );
-}