astro-ghostcms/.pnpm-store/v3/files/d8/34c0c71a8cc7cadb2c8bfbca0e7...

14 lines
301 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
"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;
}