Files
memecoin-botV2/.pnpm-store/v10/files/f7/e866301688b0f1ee265e812ea4ef99ced604fe5f0d247082b928260c2e6f2acc597a9d65f85a1775068d7f30e0f722442f227d2acc2d724a611239071fdccb

8 lines
306 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.isUndefinedIdentifier = isUndefinedIdentifier;
const utils_1 = require("@typescript-eslint/utils");
function isUndefinedIdentifier(i) {
return i.type === utils_1.AST_NODE_TYPES.Identifier && i.name === 'undefined';
}