mirror of
https://github.com/github/codeql-action.git
synced 2026-01-05 06:00:32 +08:00
9 lines
194 B
JavaScript
9 lines
194 B
JavaScript
/**
|
|
* Extractor function for a JSXText type value node.
|
|
*
|
|
* Returns self-closing element with correct name.
|
|
*/
|
|
export default function extractValueFromJSXText(value) {
|
|
return value.raw;
|
|
}
|