export default function cloneDeepWithoutLoc<T: Object>(node: T): T {
  return cloneNode(node, /* deep */ true, /* withoutLoc */ true);
}