bpmn-js/lib/import/Util.js

9 lines
166 B
JavaScript

'use strict';
module.exports.elementToString = function(e) {
if (!e) {
return '<null>';
}
return '<' + e.$type + (e.id ? ' id="' + e.id : '') + '" />';
};