Test name | Executions per second |
---|---|
Split | 12315885.0 Ops/sec |
RegExp | 15790837.0 Ops/sec |
<!--your preparation HTML code goes here-->
/*your preparation JavaScript code goes here
To execute async code during the script preparation, wrap it as function globalMeasureThatScriptPrepareFunction, example:*/
async function globalMeasureThatScriptPrepareFunction() {
// This function is optional, feel free to remove it.
// await someThing();
}
/*When writing async/deferred tests, use `deferred.resolve()` to mark test as done*/
const hasSubdomain = (hostname) => {
return hostname.split('.').length > 2;
};
hasSubdomain('pixel.barion.com');
const hasSubdomain = (hostname) => {
return /^[^.]+\.[^.]+\./.test(hostname);
};
hasSubdomain('pixel.barion.com');