MCPcopy Create free account
hub / github.com/angular/components / formatScores

Function formatScores

docs/tools/audit-docs.js:65–74  ·  view source on GitHub ↗
(scores)

Source from the content-addressed store, hash-verified

63];
64
65function formatScores(scores) {
66 let formattedScores = '';
67 Object.keys(scores).map((key, index) => {
68 if (index > 0) {
69 formattedScores += ',';
70 }
71 formattedScores += `${key}:${scores[key]}`;
72 });
73 return formattedScores;
74}
75
76// Launch the light-server to run tests again
77const urlOrDeployDir = process.argv[2];

Callers 1

audit-docs.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected