UNPKG

@finsweet/ts-utils

Version:

Typescript utils for custom Webflow projects.

6 lines (5 loc) 152 B
/** * Clone a node that has the same type as the original one * @param node */ export const cloneNode = (node, deep = true) => node.cloneNode(deep);