@jjdenhertog/ai-driven-development
Version:
AI-driven development workflow with learning capabilities for Claude
13 lines • 435 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.findTranscriptPath = findTranscriptPath;
function findTranscriptPath(logEntries) {
var _a;
for (const entry of logEntries) {
if ((_a = entry.data) === null || _a === void 0 ? void 0 : _a.transcript_path) {
return entry.data.transcript_path;
}
}
return null;
}
//# sourceMappingURL=findTranscriptPath.js.map