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
21 lines (20 sloc) 632 Bytes
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = extractValueFromSequenceExpression;
/**
* Extractor function for a SequenceExpression type value node.
* A Sequence expression is an object with an attribute named
* expressions which contains an array of different types
* of expression objects.
*
* @returns - An array of the extracted elements.
*/
function extractValueFromSequenceExpression(value) {
// eslint-disable-next-line global-require
var getValue = require('.').default;
return value.expressions.map(function (element) {
return getValue(element);
});
}