Clémentine
init
7c5b7bd
raw
history blame
No virus
80 Bytes
export function cloneNode(n) {
// $FlowIgnore
return Object.assign({}, n);
}