UNPKG

dmn-js-decision-table

Version:

A decision table view for dmn-js

8 lines 212 B
export function elementToString(element) { if (!element) { return '<null>'; } const id = element.id ? ` id="${element.id}"` : ''; return `<${element.$type}${id} />`; } //# sourceMappingURL=Util.js.map