mirror of
https://github.com/sartography/bpmn-js.git
synced 2025-02-06 14:13:43 +00:00
7 lines
140 B
JavaScript
7 lines
140 B
JavaScript
export function elementToString(e) {
|
|
if (!e) {
|
|
return '<null>';
|
|
}
|
|
|
|
return '<' + e.$type + (e.id ? ' id="' + e.id : '') + '" />';
|
|
} |