(value)
| 372 | } |
| 373 | |
| 374 | function 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 | |
| 386 | function falseValue(value) { |
| 387 | const div = document.createElement("section"); |
no outgoing calls
no test coverage detected