Sha256: 869d1122ea8b068e25923911fc22333023594d884db1227287fe7e4d63465b88
Contents?: true
Size: 518 Bytes
Versions: 19
Compression:
Stored size: 518 Bytes
Contents
/** * Extractor function for a ChainExpression type value node. * A member expression is accessing a property on an object `obj.property`. * * @param - value - AST Value object with type `ChainExpression` * @returns - The extracted value converted to correct type * and maintaing `obj?.property` convention. */ export default function extractValueFromChainExpression(value) { // eslint-disable-next-line global-require const getValue = require('.').default; return getValue(value.expression || value); }
Version data entries
19 entries across 19 versions & 2 rubygems