in frontend/src/lib/cytoscape-cxtmenu/dom-util.js [42:54]
const createElement = function (options) {
options = options || {};
const el = document.createElement(options.tag || 'div');
el.className = options.class || '';
if (options.style) {
setStyles(el, options.style);
}
return el;
};