Tests:
  • regex

    AخA
     
    var result = 0;
    FILTERS = /\s*\|\s*([^\|\s:}]*)(?::((?:(?:[^\|\s,}]*),?)+))?\s*/g;
    var str = "{{value.foo.bar.baz[2]}}";
    for (var i=0; i < 1000; i++) {
      typeof str.match(FILTERS) !== null ? result += 1 : result += 0;
    }
  • indexOf

     
    var result = 0;
    FILTERS = /\s*\|\s*([^\|\s:}]*)(?::((?:(?:[^\|\s,}]*),?)+))?\s*/g;
    var str = "{{value.foo.bar.baz[2]}}";
    for (var i=0; i < 1000; i++) {
      typeof str.indexOf('|') >= 0 ? result += 1 : result += 0;
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    regex
    indexOf

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 6 years ago)
Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.81 Safari/537.36
Chrome 72 on Windows 7
View result in a separate tab
Test name Executions per second
regex 1729.0 Ops/sec
indexOf 469660.0 Ops/sec