string position

Benchmark created on


Setup

const marketId = 'group-12345';

Test runner

Ready to run.

Testing in
TestOps/sec
regex
const isUiMarket = /group|gameLine/.test(marketId);
ready
startsWith
const isUiMarket = marketId.startsWith('group') || marketId.startsWith('gameLine');
ready
includes
const isUiMarket = marketId.includes('group') || marketId.includes('gameLine');
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.