'use strict';

// https://graphology.github.io/standard-library/operators

import { toUndirected } from 'graphology-operators';

export function _toUndirected(graph) {
  return toUndirected(graph);
}