ohctechv3/.svn/pristine/e4/e4335c9f76db2bfa3104449482ad386136903f53.svn-base
2024-10-28 15:03:36 +05:30

14 lines
566 B
Plaintext

/**
* 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)}`;
}