_isSelfClosing: function()

in src/htmltojsx.js [552:557]


  _isSelfClosing: function(node) {
    var tagName = jsxTagName(node.tagName);
    // If it has children, it's not self-closing
    // Exception: All children of a textarea are moved to a "defaultValue" attribute, style attributes are dangerously set.
    return !node.firstChild || tagName === 'textarea' || tagName === 'style';
  },