MCPcopy Create free account
hub / github.com/CodeClash-ai/CodeClash / getMatrixData

Function getMatrixData

codeclash/viewer/static/js/matrix.js:45–57  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

43}
44
45function getMatrixData() {
46 const matrixDataElement = document.getElementById("matrix-data");
47 if (!matrixDataElement) {
48 return null;
49 }
50
51 try {
52 return JSON.parse(matrixDataElement.textContent);
53 } catch (error) {
54 console.error("Error parsing matrix data:", error);
55 return null;
56 }
57}
58
59function showMatrix(matrixName) {
60 // Hide all matrix tables

Callers 1

initializeMatrixAnalysisFunction · 0.85

Calls 1

parseMethod · 0.45

Tested by

no test coverage detected