UNPKG

ltx

Version:

<xml for="JavaScript">

13 lines (10 loc) 204 B
'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;