mirror of
https://github.com/sartography/bpmn-js.git
synced 2025-01-10 17:16:02 +00:00
3996408404
* use specialized lodash utilities * consistently apply 'use strict' Related to #185
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 : '') + '" />';
|
|
}; |