source: imaps-frontend/node_modules/jsx-ast-utils/src/values/expressions/SpreadElement.js@ 0c6b92a

main
Last change on this file since 0c6b92a was d565449, checked in by stefan toskovski <stefantoska84@…>, 3 months ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 330 bytes
Line 
1/**
2 * Extractor function for a SpreadElement type value node.
3 * We can't statically evaluate an array spread, so just return
4 * undefined.
5 *
6 * @param - value - AST Value object with type `SpreadElement`
7 * @returns - An prototypeless object.
8 */
9export default function extractValueFromSpreadElement() {
10 return undefined;
11}
Note: See TracBrowser for help on using the repository browser.