7 lines
151 B
JavaScript
7 lines
151 B
JavaScript
|
module.exports.elementToString = function(e) {
|
||
|
if (!e) {
|
||
|
return '<null>';
|
||
|
}
|
||
|
|
||
|
return '<' + e.$type + (e.id ? ' id="' + e.id : '') + '" />';
|
||
|
};
|