UNPKG

babel-preset-test-bundled-dependencies

Version:

Allow custom config for create-react-app without ejecting

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