12345678910111213141516171819202122 |
- 'use strict';
- function isNewExpression(node, options) {
- if (node?.type !== 'NewExpression') {
- return false;
- }
- const {
- name,
- } = {
- ...options,
- };
- if (name) {
- return node.callee.type === 'Identifier' && node.callee.name === name;
- }
- /* c8 ignore next */
- return true;
- }
- module.exports = isNewExpression;
|