mirror of
https://github.com/sartography/bpmn-js.git
synced 2025-02-10 16:06:26 +00:00
9 lines
166 B
JavaScript
9 lines
166 B
JavaScript
'use strict';
|
|
|
|
module.exports.elementToString = function(e) {
|
|
if (!e) {
|
|
return '<null>';
|
|
}
|
|
|
|
return '<' + e.$type + (e.id ? ' id="' + e.id : '') + '" />';
|
|
}; |