Operators.js 200 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
'use strict';

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

import { toUndirected } from 'graphology-operators';

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