2025-11-05 17:04:23 -03:00

13 lines
204 B
JavaScript

'use strict';
function JSONify(el) {
if (typeof el !== "object") return el;
return {
name: el.name,
attrs: el.attrs,
children: el.children.map(JSONify),
};
}
module.exports = JSONify;