Files
memecoin-botV2/.pnpm-store/v10/files/e0/269f8f72059d691e2bd9a16ef4b10c31aacc10982e752aa76094e6582d65ee3ff2a87805eb46d24460bc2c92e840fe6101435cc7585c0e3fbf7635174efc0a

8 lines
272 B
Plaintext

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