astro-ghostcms/.pnpm-store/v3/files/43/7644b5b2e833fa4ce0b7e77c195...

10 lines
238 B
Plaintext

/**
* Extractor function for a ThisExpression type value node.
* A this expression is using `this` as an identifier.
*
* @returns - 'this' as a string.
*/
export default function extractValueFromThisExpression() {
return 'this';
}