regex case insensitie test

Benchmark created on


Setup

const string = `0123456789abcdA`

Test runner

Ready to run.

Testing in
TestOps/sec
i
return /\D/i.test(String(string)) ? false : true;
ready
no i
return /\D/.test(String(string)) ? false : true;
ready

Revisions

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