simondh's picture
front
cc651f6
raw
history blame
80 Bytes
export function cloneNode(n) {
// $FlowIgnore
return Object.assign({}, n);
}