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

Function falseValue

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

Source from the content-addressed store, hash-verified

384}
385
386function falseValue(value) {
387 const div = document.createElement("section");
388 div.setAttribute("class", "type2");
389 const i = document.createElement("i");
390 i.setAttribute("class", "fas fa-angle-right icone");
391 const msg = document.createElement("h2");
392 msg.setAttribute("class", "error");
393 msg.textContent = `${value}`;
394 div.appendChild(i);
395 div.appendChild(msg);
396 app.appendChild(div);
397}
398
399async function createText(text, typingOn = true) {
400 const p = document.createElement("p");

Callers 2

getInputValueFunction · 0.85
calcFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected