🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
14 lines
301 B
JavaScript
14 lines
301 B
JavaScript
"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;
|
|
} |