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