UNPKG
dmn-js-decision-table-custom-z
Version:
latest (11.0.9)
11.0.9
11.0.8
11.0.7
11.0.6
11.0.5
11.0.4
11.0.3
A decision table view for dmn-js
github.com/bpmn-io/dmn-js
bpmn-io/dmn-js
dmn-js-decision-table-custom-z
/
lib
/
import
/
Util.js
9 lines
(8 loc)
•
239 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
export
function
elementToString
(element)
{
if
(!element) {
return
'<null>'
; } var id = element.id ?
" id=\""
.
concat
(element.id,
"\""
) :
''
;
return
"<"
.
concat
(element.$
type
).
concat
(id,
" />"
); } //# sourceMappingURL=Util.js.map