FabienDanieau's picture
first commit
2434dca
raw
history blame
63 Bytes
export function cloneNode(n) {
return Object.assign({}, n);
}