UNPKG
vmes-flowable
Version:
latest (1.0.0)
1.0.0
ceshibao
vmes-flowable
/
bpmn-js
/
lib
/
import
/
Util.js
7 lines
(6 loc)
•
140 B
JavaScript
View Raw
1
2
3
4
5
6
7
export
function
elementToString(e) {
if
(!e) {
return
'<null>'
; }
return
'<'
+ e.
$type
+ (e.id ?
' id="'
+ e.id :
''
) +
'" />'
; }