JSXText.js 301 Bytes
"use strict";

Object.defineProperty(exports, "__esModule", {
  value: true
});
exports.default = extractValueFromJSXText;
/**
 * Extractor function for a JSXText type value node.
 *
 * Returns self-closing element with correct name.
 */
function extractValueFromJSXText(value) {
  return value.raw;
}