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

12 lines (10 loc) 338 B
import getValue from './index'; /** * 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) { return value.elements.map(element => getValue(element)); }