d2-ui
Version:
22 lines (16 loc) • 467 B
JavaScript
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(alternate) : getValue(consequent);
}
;