ohctechv3/.svn/pristine/d6/d634a429676fb3dc98eb16336a3b98b1d6035610.svn-base
2024-10-28 15:03:36 +05:30

15 lines
409 B
Plaintext

/**
* Extractor function for a JSXFragment type value node.
*
* Returns self-closing element with correct name.
*/
export default function extractValueFromJSXFragment(value) {
// eslint-disable-next-line global-require
const getValue = require('.').default;
if (value.children.length === 0) {
return '<></>';
}
return `<>${[].concat(value.children).map((x) => getValue(x)).join('')}</>`;
}