(m,time=3000)
| 489 | } |
| 490 | |
| 491 | function wtfmsg(m,time=3000){ |
| 492 | var elem=document.createElement('div') |
| 493 | elem.className="wtfmsg" |
| 494 | elem.innerHTML=m |
| 495 | // var bottom=(document.querySelectorAll('.wtfmsg').length+1)*50+10 |
| 496 | // elem.style.bottom=`${bottom}px` |
| 497 | document.body.appendChild(elem) |
| 498 | if(time<0){ |
| 499 | elem.onclick=()=>{ |
| 500 | document.body.removeChild(elem) |
| 501 | } |
| 502 | }else{ |
| 503 | setTimeout(()=>{ |
| 504 | document.body.removeChild(elem) |
| 505 | },time) |
| 506 | } |
| 507 | } |
| 508 | |
| 509 | function find() { |
| 510 | var p = prompt('🔍find ', '') |
no test coverage detected