UNPKG
golfnet-editor
Version:
latest (1.1.0)
1.1.0
## Features
github.com/pinussilvestrus/postit-js
pinussilvestrus/postit-js
golfnet-editor
/
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 :
''
) +
'" />'
; }