MCPcopy Create free account
hub / github.com/TechSpiritSS/Terminal-Portfolio / trueValue

Function trueValue

scripts/functions.js:374–384  ·  view source on GitHub ↗
(value)

Source from the content-addressed store, hash-verified

372}
373
374function trueValue(value) {
375 const div = document.createElement("section");
376 div.setAttribute("class", "type2");
377 const i = document.createElement("i");
378 i.setAttribute("class", "fas fa-angle-right icone");
379 const msg = document.createElement("h2");
380 msg.textContent = `${value}`;
381 div.appendChild(i);
382 div.appendChild(msg);
383 app.appendChild(div);
384}
385
386function falseValue(value) {
387 const div = document.createElement("section");

Callers 2

getInputValueFunction · 0.85
calcFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected