/** * Extractor function for a NewExpression type value node. * A new expression instantiates an object with `new` keyword. * * @returns - an empty object. */exportdefaultfunctionextractValueFromNewExpression(){returnnewObject();// eslint-disable-line}