astro-ghostcms/.pnpm-store/v3/files/d6/32d9cbdb01a2e844b5206bd34b0...

14 lines
566 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
/**
* Extractor function for a OptionalMemberExpression type value node.
* A member expression is accessing a property on an object `obj.property`.
*
* @param - value - AST Value object with type `OptionalMemberExpression`
* @returns - The extracted value converted to correct type
* and maintaing `obj?.property` convention.
*/
export default function extractValueFromOptionalMemberExpression(value) {
// eslint-disable-next-line global-require
const getValue = require('.').default;
return `${getValue(value.object)}?.${getValue(value.property)}`;
}