Files
memecoin-botV2/.pnpm-store/v10/files/d5/5e00826157a259edbe2697b61e7a538bd5fc44cf1f043cc91ec4a587d2222118ea0abc47d4df578475ee3c6699faad60ecaaec8bcd99973c7d36f565fce948

17 lines
526 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.isSymbolFromDefaultLibrary = isSymbolFromDefaultLibrary;
function isSymbolFromDefaultLibrary(program, symbol) {
if (!symbol) {
return false;
}
const declarations = symbol.getDeclarations() ?? [];
for (const declaration of declarations) {
const sourceFile = declaration.getSourceFile();
if (program.isSourceFileDefaultLibrary(sourceFile)) {
return true;
}
}
return false;
}