9 lines
395 B
Plaintext
9 lines
395 B
Plaintext
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.isUndefinedIdentifier = void 0;
|
|
const utils_1 = require("@typescript-eslint/utils");
|
|
function isUndefinedIdentifier(i) {
|
|
return i.type === utils_1.AST_NODE_TYPES.Identifier && i.name === 'undefined';
|
|
}
|
|
exports.isUndefinedIdentifier = isUndefinedIdentifier;
|
|
//# sourceMappingURL=isUndefinedIdentifier.js.map |