Script Preparation code:
x
 
window.MY_URL = "http://jblas:password@mycompany.com:8080/mail/inbox?msg=1234&type=unread#msg-content";
window.RX_DOMAIN = /^\w+:\/\/(?:[\w:-]+@)?([^:/#]+)/;
Tests:
  • URL constructor

     
    const url = new URL(window.MY_URL);
    window.result = url.hostname;
  • Naive regexp

     
    window.result = window.MY_URL.match(window.RX_DOMAIN)[1];
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    URL constructor
    Naive regexp

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 6 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36
Chrome 69 on Windows
View result in a separate tab
Test name Executions per second
URL constructor 319659.6 Ops/sec
Naive regexp 1323129.0 Ops/sec