(value)
| 384 | } |
| 385 | |
| 386 | function 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 | |
| 399 | async function createText(text, typingOn = true) { |
| 400 | const p = document.createElement("p"); |
no outgoing calls
no test coverage detected