UNPKG

react-kiwi-dropdown

Version:

| Name | Type | Description | | --------------------------- | -------------------- | ----------- | | options | array | | selectedOption | string | | onCha

12 lines (11 loc) 400 B
/** * Extractor function for an ArrayExpression type value node. * An array expression is an expression with [] syntax. * * @returns - An array of the extracted elements. */ export default function extractValueFromArrayExpression(value) { // eslint-disable-next-line global-require const getValue = require('./index.js').default; return value.elements.map(element => getValue(element)); }