File size: 80 Bytes
cc651f6
 
 
 
1
2
3
4
export function cloneNode(n) {
  // $FlowIgnore
  return Object.assign({}, n);
}