astro-ghostcms/.pnpm-store/v3/files/8c/4999a9ca20d9d253966adea0053...

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;
}