blob: 1b2b71b30679b0658e8524701f9c9c134c40489c [file] [log] [blame]
/**
* 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';
}