mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 01:59:31 +08:00
9 lines
No EOL
395 B
Text
9 lines
No EOL
395 B
Text
"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 |