astro-ghostcms/.pnpm-store/v3/files/1b/f88731672b7fdecd767245b809b...

10 lines
270 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
/**
* Extractor function for a NewExpression type value node.
* A new expression instantiates an object with `new` keyword.
*
* @returns - an empty object.
*/
export default function extractValueFromNewExpression() {
return new Object(); // eslint-disable-line
}