astro-ghostcms/.pnpm-store/v3/files/37/5ffd0f9ecb8fcfdd6de626c1658...

15 lines
352 B
Plaintext

'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = extractValueFromThisExpression;
/**
* Extractor function for a ThisExpression type value node.
* A this expression is using `this` as an identifier.
*
* @returns - 'this' as a string.
*/
function extractValueFromThisExpression() {
return 'this';
}