@graphteon/juricode
Version:
We are forging the future with lines of digital steel
12 lines • 425 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.parseTerminalOutput = void 0;
const parseTerminalOutput = (raw) => {
const envRegex = /(.*)\[Python Interpreter: (.*)\]/s;
const match = raw.match(envRegex);
if (!match)
return raw;
return match[1]?.trim() || "";
};
exports.parseTerminalOutput = parseTerminalOutput;
//# sourceMappingURL=parse-terminal-output.js.map