12 lines
330 B
Plaintext
12 lines
330 B
Plaintext
/**
|
|
* Extractor function for a SpreadElement type value node.
|
|
* We can't statically evaluate an array spread, so just return
|
|
* undefined.
|
|
*
|
|
* @param - value - AST Value object with type `SpreadElement`
|
|
* @returns - An prototypeless object.
|
|
*/
|
|
export default function extractValueFromSpreadElement() {
|
|
return undefined;
|
|
}
|