You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
547 B
22 lines
547 B
2 years ago
|
'use strict';
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.default = extractValueFromJSXFragment;
|
||
|
/**
|
||
|
* Extractor function for a JSXFragment type value node.
|
||
|
*
|
||
|
* Returns self-closing element with correct name.
|
||
|
*/
|
||
|
function extractValueFromJSXFragment(value) {
|
||
|
// eslint-disable-next-line global-require
|
||
|
var getValue = require('.').default;
|
||
|
|
||
|
if (value.children.length === 0) {
|
||
|
return '<></>';
|
||
|
}
|
||
|
return '<>' + [].concat(value.children).map(function (x) {
|
||
|
return getValue(x);
|
||
|
}).join('') + '</>';
|
||
|
}
|