UNPKG

data-provider-temporary

Version:

Library that helps with server-to-client synchronization of data

9 lines (8 loc) 230 B
/** * Extractor function for a JSXElement type value node. * * Returns self-closing element with correct name. */ export default function extractValueFromJSXElement(value) { return `<${value.openingElement.name.name} />`; }