We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fb72aa commit fb40b4bCopy full SHA for fb40b4b
src/util/values/expressions/NewExpression.js
@@ -0,0 +1,11 @@
1
+'use strict';
2
+
3
+/**
4
+ * Extractor function for a NewExpression type value node.
5
+ * A new expression instantiates an object with `new` keyword.
6
+ *
7
+ * @returns - an empty object.
8
+ */
9
+export default function extractValueFromNewExpression() {
10
+ return new Object(); // eslint-disable-line
11
+}
0 commit comments