UNPKG

pop

Version:

Pop is a [Hyperapp](https://github.com/hyperapp/hyperapp) / [Ultradom](https://github.com/ultradom/ultradom) spin-off project — yet another micro-framework for creating graphical user interfaces. This is not the final title, but let's go with that for now

12 lines (11 loc) 321 B
export function recycleElement(element, map) { return { nodeName: element.nodeName.toLowerCase(), attributes: {}, children: map.call(element.childNodes, function(element) { return element.nodeType === 3 // Node.TEXT_NODE ? element.nodeValue : recycleElement(element, map) }) } }