UNPKG

e-lado

Version:

[![CircleCI](https://circleci.com/gh/sharetribe/sharetribe/tree/master.svg?style=svg)](https://circleci.com/gh/sharetribe/sharetribe/tree/master) [![Dependency Status](https://gemnasium.com/sharetribe/sharetribe.png)](https://gemnasium.com/sharetribe/shar

18 lines (15 loc) 451 B
import getValue from './index'; /** * Extractor function for a ConditionalExpression type value node. * * @param - value - AST Value object with type `ConditionalExpression` * @returns - The extracted value converted to correct type. */ export default function extractValueFromConditionalExpression(value) { const { test, alternate, consequent, } = value; return getValue(test) ? getValue(consequent) : getValue(alternate); }