jsPerf.app is an online JavaScript performance benchmark test runner & jsperf.com mirror. It is a complete rewrite in homage to the once excellent jsperf.com now with hopefully a more modern & maintainable codebase.
jsperf.com URLs are mirrored at the same path, e.g:
https://jsperf.com/negative-modulo/2
Can be accessed at:
https://jsperf.app/negative-modulo/2
const parser = new DOMParser();
function strip(html)
{
var tmp = document.createElement("DIV");
tmp.innerHTML = html;
return tmp.textContent || tmp.innerText || "";
}
const dompurify = await import('https://esm.sh/dompurify')
Ready to run.
| Test | Ops/sec | |
|---|---|---|
| DomParser | | ready |
| Regex | | ready |
| Temp div | | ready |
| Dompurify | | ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.