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