UNPKG

lightfold

Version:

lightweight scaffolding and archiving utility CLI.

10 lines (9 loc) 270 B
/** * 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 }