mirror of
https://github.com/idanoo/GoScrobble
synced 2025-07-27 09:59:14 +00:00
9 lines
270 B
JavaScript
9 lines
270 B
JavaScript
/**
|
|
* 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
|
|
}
|