mirror of
https://github.com/sartography/bpmn-js.git
synced 2025-01-10 17:16:02 +00:00
9be61259bd
We use ES modules, so 'use strict' is not necessary anymore.
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 : '') + '" />';
|
|
} |