Skip to content
Permalink
9bfb9ba527
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
20 lines (19 sloc) 574 Bytes
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = extractValueFromArrayExpression;
/**
* Extractor function for an ArrayExpression type value node.
* An array expression is an expression with [] syntax.
*
* @returns - An array of the extracted elements.
*/
function extractValueFromArrayExpression(value) {
// eslint-disable-next-line global-require
var getValue = require('.').default;
return value.elements.map(function (element) {
if (element === null) return undefined;
return getValue(element);
});
}