12 lines
366 B
JavaScript
12 lines
366 B
JavaScript
import { DEFAULT_FONT_SIZE } from "../constants.js";
|
|
export class GraphConverter {
|
|
constructor({ converter, }) {
|
|
this.convert = (graph, config) => {
|
|
return this.converter(graph, {
|
|
...config,
|
|
fontSize: config.fontSize || DEFAULT_FONT_SIZE,
|
|
});
|
|
};
|
|
this.converter = converter;
|
|
}
|
|
}
|