UNPKG

orionsoft-react-scripts

Version:

Orionsoft Configuration and scripts for Create React App.

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); }