UNPKG

data-provider-temporary

Version:

Library that helps with server-to-client synchronization of data

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 }