Skip to content
Permalink
9bfb9ba527
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
23 lines (21 sloc) 625 Bytes
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = extractValueFromJSXElement;
/**
* Extractor function for a JSXElement type value node.
*
* Returns self-closing element with correct name.
*/
function extractValueFromJSXElement(value) {
// eslint-disable-next-line global-require
var getValue = require('.').default;
var Tag = value.openingElement.name.name;
if (value.openingElement.selfClosing) {
return '<' + Tag + ' />';
}
return '<' + Tag + '>' + [].concat(value.children).map(function (x) {
return getValue(x);
}).join('') + '</' + Tag + '>';
}